Reputation: 876
Is it possible to remove the tree view from the Open and Save file dialog's in .NET?
Would it be possible to find the handle of the tree view and destroy the window using Win32 API's?
I could not find a way in the OpenFileDialog
class to hide the tree view. Could someone help me out?
Upvotes: 0
Views: 152
Reputation: 864
Try to set AutoUpgradeEnable to false. Then you will get the old fashioned looking dialog when running on Vista or later. That was what you meant, right?
Upvotes: 1