4

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

leppie
  • 115,091
  • 17
  • 196
  • 297
Cyberguille
  • 1,552
  • 3
  • 28
  • 58

1 Answers1

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