Setting FolderBrowserDialog.ShowNewFolderButton to true does not show the "New Folder" button

46 views Asked by At
using (var fbd = new FolderBrowserDialog())
{
    fbd.ShowNewFolderButton = true; 

    DialogResult result = fbd.ShowDialog();
 
    ...

The dialog looks like the following. Note that there is no "New Folder" button. enter image description here

0

There are 0 answers