Hi I'm using FolderBrowserDialog with wpf in visual studio 2013 but i want remove the button make new folder because in my application is meaningless, I see this article http://www.codeproject.com/Articles/14454/Extended-Folder-Browser that disable this button but I would remove this button
Asked
Active
Viewed 3,059 times
1 Answers
10
There is a property which allows you to hide it.
var x = new FolderBrowserDialog();
x.ShowNewFolderButton = false;
Check out the class documentation here: FolderBrowserDialog Class

Spevy
- 1,325
- 9
- 22