Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to remove make new folder FolderBrowserDialog

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

like image 749
Cyberguille Avatar asked Oct 31 '25 01:10

Cyberguille


1 Answers

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

like image 118
Spevy Avatar answered Nov 01 '25 16:11

Spevy



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!