Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想提示用户输入文件夹,但允许他们粘贴路径。FolderBrowserDialog 似乎不支持这一点。我考虑过使用 OpenFileDialog,但这需要用户选择一个我不想要的文件——尽管它确实允许用户键入或粘贴路径。
如何让用户选择一个文件夹,同时允许他们键入或粘贴路径(到文件夹)?
您可以做的是制作一个带有文本框和文件夹浏览对话框的表单。然后用户可以粘贴或输入文件夹地址(然后您必须验证它)或仅使用其中的文件夹浏览对话框。
然后,只要用户想要使用它,只需将此表单显示为对话框。