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://*.com/questions/11144770/how-does-wpf-openfiledialog-track-directory-of-last-opened-file
这个方法应该Work,等需要的时候再深入了。