C# WinForm 选择目录路径和文件路径

2020-12-13 02:49

阅读:390

标签:winform   style   class   blog   code   java   

soscw.com,搜素材
private string SelectPath() //弹出一个选择目录的对话框
{
     FolderBrowserDialog path = new FolderBrowserDialog();
     path.ShowDialog();
     return path.SelectedPath;
}
private string SelectFile() //弹出一个选择文件的对话框
{
     OpenFileDialog file = new OpenFileDialog();
     file.ShowDialog();
     return file.SafeFileName;
}
soscw.com,搜素材

 

C# WinForm 选择目录路径和文件路径,搜素材,soscw.com

C# WinForm 选择目录路径和文件路径

标签:winform   style   class   blog   code   java   

原文地址:http://www.cnblogs.com/craigtao/p/3784215.html


评论


亲,登录后才可以留言!