我正在尝试here的基本文件对话框示例,我收到“确定”错误,我不知道原因。
错误1'System.Nullable'不包含'OK'的定义,并且没有扩展方法'OK'可以找到接受类型'System.Nullable'的第一个参数(你是否缺少using指令或程序集)引用?)
private void button1_Click(object sender, System.EventArgs e)
{
Stream myStream = null;
OpenFileDialog openFileDialog1 = new OpenFileDialog();
openFileDialog1.InitialDirectory = "c:\\" ;
openFileDialog1.Filter = "txt files (*.txt)|*.txt|All files (*.*)|*.*" ;
openFileDialog1.FilterIndex = 2 ;
openFileDialog1.RestoreDirectory = true ;
if(openFileDialog1.ShowDialog() == DialogResult.OK)
{
try
{
if ((myStream = openFileDialog1.OpenFile()) != null)
{
using (myStream)
{
// Insert code to read the stream here.
}
}
}
catch (Exception ex)
{
MessageBox.Show("Error: Could not read file from disk. Original error: " + ex.Message);
}
}
}
答案 0 :(得分:16)
.NET框架中有两个OpenFileDialog
版本:WinForms one和WPF one。看起来你正在使用WPF,事实上它确实从Nullable<bool>
返回OpenFile
值。 WinForm版本返回DialogResult
值,这似乎是您所期望的。
答案 1 :(得分:10)
听起来你有一个名为DialogResult
的本地财产。请尝试使用System.Windows.Forms.DialogResult.OK
。
答案 2 :(得分:1)
它似乎试图将ShowDialog用于System.Windows.Controls
。
尝试将呼叫显式设为System.Windows.Forms
像:
System.Windows.Forms.OpenFileDialog openFileDialog1 = new System.Windows.Forms.OpenFileDialog();