Is there any way to do this?
Note this: Set up file open dialog
EDIT:
http://msdn.microsoft.com/en-us/magazine/cc300434.aspxWhen 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.
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.
There is no support in the .NET Framework for major changes to existing dialogs. However, solutions like this can help you.
Source: https://habr.com/ru/post/1307669/More articles:How do virtual destructors work? - c ++Beginning of dev on iPhone: iPad - a learning path? - iphoneC ++ - a shell for the C library - c ++How to "export" code? - javaWhy doesn't the following invoke the overloaded operator == (const String &, const String &)? "cobblestone" == "stone" - c ++Recovering old commits from multiple git permutations - gitRails: "Could not find table" in many-to-many relationships - ruby-on-railsHow to access UIColor color components? - iphoneWhat is the C # equivalent for LINEST from Excel? - c #How to measure the effect of properly reloading .NET collections before NGen? - .netAll Articles