Remove places panel in OpenFileDialog C #

Is there any way to do this?

+4
source share
2 answers

Note this: Set up file open dialog

EDIT:

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

When coding the Open File general dialog in the Win32 API, you can set the style to hide the locations of the bar . But, like other features of Win32 Common Dialogs, this option seems to be lost in the switch to the .NET Framework . Creating a common dialogue has never been easier than in Framework, but this simplicity comes at the expense of some flexibility. In addition, there is no way in managed code to extend the layout of a dialog box with additional controls.

+2
source

There is no support in the .NET Framework for major changes to existing dialogs. However, solutions like this can help you.

0
source

Source: https://habr.com/ru/post/1307669/


All Articles