WPF .NET Framework 4 Microsoft.Win32.SaveFileDialog跳过而不显示对话框

时间:2015-10-08 23:42:43

标签: c# wpf savefiledialog

使用以下代码在WPF中保存文件

Microsoft.Win32.SaveFileDialog dlg = new Microsoft.Win32.SaveFileDialog();
dlg.FileName = "Document"; // Default file name
dlg.DefaultExt = ".text"; // Default file extension
dlg.Filter = "Text documents (.txt)|*.txt"; // Filter files by extension

// Show save file dialog box
Nullable<bool> result = dlg.ShowDialog();

// Process save file dialog box results
if (result == true)
{
    // Save document
    string filename = dlg.FileName;
}

程序跳过保存对话框,看看会发生什么,调试时我得到Nullable<bool> result false。

enter image description here

我错过了什么?

0 个答案:

没有答案