System.Windows.Forms.FolderBrowserDialog fbd = new System.Windows.Forms.FolderBrowserDialog()
fbd.ShowDialog()
if (fbd.SelectedPath != string.Empty)
{
tmp_path = fbd.SelectedPath
}
从位置出发寻找控件一般没有这么做的吧。如果你通过匹配控件名称速度太慢,那遍历父控件中的children,匹配Type行不行。还有就是将父控件中的内容做缓存处理(放到字典中)匹配Key会比你之前的方法快一些的。欢迎分享,转载请注明来源:内存溢出
评论列表(0条)