user45245
user45245

Reputation: 905

Analogue of OpenFileDialog for wpf

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

Answers (2)

Thomas Li
Thomas Li

Reputation: 3338

Try Microsoft.Win32.OpenFileDialog

Upvotes: 3

Reed Copsey
Reed Copsey

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

Related Questions