我需要一个1000个文件类型的打开文件对话框(* .000 – * .999).
但是将它添加到过滤器中,对话框在选择文件类型时变得非常慢.有什么办法可以加快速度吗?
string text;
for (int i = 0; i <= 999; i++)
{
text.Append("*." + i.ToString("000") + "; ");
}
string textWithoutLastSemicolumn = text.ToString().Substring(0,text.ToString().Length - 2);
dialog.Filter = "Files (" + textWithoutLastSemicolumn + ")|" + textWithoutLastSemicolumn;
最佳答案
原文链接:https://www.f2er.com/csharp/437154.html