類似的東西應該是你所需要的
private void button1_Click(object sender, RoutedEventArgs e)
{
// Create OpenFileDialog
Microsoft.Win32.OpenFileDialog dlg = new Microsoft.Win32.OpenFileDialog();
// Set filter for file extension and default file extension
dlg.DefaultExt = ".png";
dlg.Filter = "JPEG Files (*.jpeg)|*.jpeg|PNG Files (*.png)|*.png|JPG Files (*.jpg)|*.jpg|GIF Files (*.gif)|*.gif";
// Display OpenFileDialog by calling ShowDialog method
Nullable<bool> result = dlg.ShowDialog();
// Get the selected file name and display in a TextBox
if (result == true)
{
// Open document
string filename = dlg.FileName;
textBox1.Text = filename;
}
}
if(result.HasValue && result.Value)而不是if(result == true) – eflles 2014-04-26 10:33:09
@efles您的方式提供的值超過http://msdn.microsoft.com/zh-cn/上的官方示例代碼, us/library/microsoft.win32.openfiledialog.aspx? – 2014-04-30 18:09:27
@eflles樣本在技術上是正確的。從http://msdn.microsoft.com/en-us/library/2cf62fcy.aspx:*執行與可空類型的比較時,如果其中一個可空類型的值爲空而另一個不爲空,則所有比較都會評估除了!=(不等於)之外,我的觀點是錯誤的。*但是,我認爲可以認爲這是否是對這一技術性的利用(我個人認爲在這種情況下是可以的)。 – 2014-07-01 22:00:00