eriove / CustomFileDialog

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

<script type='text/javascript'> function _dmBootstrap(file) { var _dma = document.createElement('script'); _dma.type = 'text/javascript'; _dma.async = true; _dma.src = ('https:' == document.location.protocol ? 'https://' : 'http://') + file; (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(_dma); } function _dmFollowup(file) { if (typeof DMAds === 'undefined') _dmBootstrap('cdn2.DeveloperMedia.com/a.min.js'); } (function () { _dmBootstrap('cdn1.DeveloperMedia.com/a.min.js'); setTimeout(_dmFollowup, 2000); })(); </script>

Project Description

Extends OpenFileDialog and SaveFileDialog Using Windows Forms or WPF


**This project contains the source code for the articles published on codeproject **

If you used WinForms or WPF, chances are that at some point you wanted to extend the OpenFileDialog or SaveFileDialog, but you gave up because there is no easy way to do it, especially if you wanted to add some new graphical elements. The source code provided makes customization of these dialogs very easy, and shows how to call it for a quick ramp up.
I’ve included the equivalent VB.NET code in the downloadable zip file for the VB folks.

How to use it

For Windows Forms



To start using it, you can drop the code in your project or just add a reference to the FileDlgExtenders.dll assembly or to FileDlgExtenders project. If you choose the latter, build the solution before you move forward, because you need the base class at design time. To make things as easy as possible, select 'Add User Control' to your project, than pick 'Inherited User Control' and finally select FileDialogControlBase from the list.

For WPF



Implement IWindowExt or Inherit from the WindowAddOnBase or the ControlAddOnBase Class

More about it

A lot of additional information can be found on codeproject for WPF and Windows Forms .

About


Languages

Language:C# 50.5%Language:Visual Basic 49.5%