Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Remove places bar in OpenFileDialog C#

Is there a way to do it?

like image 285
Vince Avatar asked Nov 05 '22 14:11

Vince


1 Answers

Check this out : Customize Your Open File Dialog

EDIT:

http://msdn.microsoft.com/en-us/magazine/cc300434.aspx

When coding against the Open File common dialog in the Win32 API, you can set a style to hide the places bar. But like other features of the Win32 common dialogs, this setting seems to have gotten lost in the migration to the .NET Framework. Creating a common dialog has never been easier than it is in the Framework, but this simplicity comes at the cost of some flexibility. In addition, in managed code there is no way to extend the layout of the dialog with additional controls.

like image 70
Ahmet Kakıcı Avatar answered Nov 15 '22 08:11

Ahmet Kakıcı