码迷,mamicode.com
首页 > Windows程序 > 详细

WPF - 使用Microsoft.Win32.OpenFileDialog打开文件

时间:2014-07-01 21:10:35      阅读:419      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   使用   文件   

WPF 使用这个方法打开文件,很方便,而且可以记住上次打开的路径。

            Microsoft.Win32.OpenFileDialog openFileDialog = new Microsoft.Win32.OpenFileDialog();
            openFileDialog.Multiselect = false;
            openFileDialog.Filter = "AllFiles|*.*";

            if ((bool)openFileDialog.ShowDialog())
            {
                txtPath.Text = openFileDialog.FileName;
            }        
txtPath 是界面上的控件名称

想要知道打开文件的历史列表:http://stackoverflow.com/questions/11144770/how-does-wpf-openfiledialog-track-directory-of-last-opened-file
这个方法应该Work,等需要的时候再深入了。

WPF - 使用Microsoft.Win32.OpenFileDialog打开文件,布布扣,bubuko.com

WPF - 使用Microsoft.Win32.OpenFileDialog打开文件

标签:style   blog   http   color   使用   文件   

原文地址:http://www.cnblogs.com/mantian/p/3816834.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!