前端之家收集整理的这篇文章主要介绍了
允许用户在C#中浏览文件的最佳方法是什么?,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
using (OpenFileDialog dlg = new OpenFileDialog())
{
dlg.Title = "Select a file";
if (dlg.ShowDialog()== DialogResult.OK)
{
//do something with dlg.FileName
}
}
原文链接:https://www.f2er.com/csharp/98335.html