本文介绍了BUG + FEATURE REQUEST:FolderBrowserDialog =破了,没用了的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述




以下代码显示FolderBrowserDialog =已损坏。


FolderBrowserDialog folderDialog = new FolderBrowserDialog();

folderDialog.ShowNewFolderButton = false;

folderDialog.ShowDialog();


将ShowNewFolderButton设置为false会导致错误。如果我将其设置为

false,则显示为STILL。天才。


也没有办法将根目录设置为MY OWN路径。它必须是

a SpecialFolder,我们能否拥有这个,所以我们可以将它设置为我们自己选择的任何路径




谢谢

Hi,

The following code shows the FolderBrowserDialog = broken.

FolderBrowserDialog folderDialog = new FolderBrowserDialog();
folderDialog.ShowNewFolderButton = false;
folderDialog.ShowDialog();

Setting ShowNewFolderButton to false does bugger all. If I set this to
false it is STILL shown. Genius.

There is also NO WAY to set the root directory to MY OWN path. It MUST be
a SpecialFolder , can we have this so we can set it to any path of our own
choosing?

Thanks

推荐答案





这篇关于BUG + FEATURE REQUEST:FolderBrowserDialog =破了,没用了的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-05 18:09