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.
我正在考虑构建一个非常简单的程序,当您浏览文件时,它只会使用文件名中包含“W2ER”的文件填充浏览器。
这可能吗?
现在我有一个非常标准的按钮点击打开文件夹浏览器的代码。
如果是标准对话框,那么
OpenFileDialog1.Filter = "Some Suitable Name | *.W2ER"
有关 MSDN 的更多详细信息
Filter Property可以提供您想要的。示例代码OpenFileDialog1:
Filter Property
OpenFileDialog1
OpenFileDialog1.Filter = "Files with W2ER in their name | *W2ER*.*"
注意:您可以替换.*为要进一步限制搜索的扩展名。现在它会查找名称中任何部分带有“W2ER”的任何类型的文件。*W2ER*.txt只会查找名称中带有“W2ER”的 TXT 文件。
.*
*W2ER*.txt