Reputation: 905
In OpenFileDialog there is a button for creation of a new folder at pushing on which, there is a creation of a new folder, assignment to it to a name and setting of focus for renaming. How can I implement it in my program?
Upvotes: 1
Views: 313
Reputation: 564373
WPF does have an OpenFileDialog class you can use, just like Windows Forms. It's in the Microsoft.Win32
namespace. It contains this same feature.
Upvotes: 2