前段时间我写了一个具有csv导入/导出功能的silverlight用户控件。这一直很好,直到最近我发现它在一个场景中出错。这可能是由于转向Silverlight 3。
错误:
消息:Silverlight 2应用程序中的未处理错误
代码:4004
类别:ManagedRuntimeError
消息:System.Security.SecurityException:对话框必须由用户启动
在System.Windows.Controls.OpenFileDialog.ShowDialog()
在MyControl.OpenImportFileDialog()
在......
守则:
private void BrowseFileButton_Click(object sender, RoutedEventArgs e)
{
if (string.IsNullOrEmpty(lblFileName.Text))
{
if (MessageBox.Show("Are you sure you want to change the Import file?", "Import", MessageBoxButton.OKCancel) == MessageBoxResult.Cancel)
{
return;
}
}
EnableDisableImportButtons(false);
var fileName = OpenImportFileDialog();
lblFileName.Text = fileName ?? string.Empty;
EnableDisableImportButtons(true);
}
private string OpenImportFileDialog()
{
var dlg = new OpenFileDialog { Filter = "CSV Files (*.csv)|*.csv" };
if (dlg.ShowDialog() ?? false)
{
using (var reader = dlg.File.OpenText())
{
string fileName;
//process the file here and store fileName in variable
return fileName;
}
}
}
我可以打开导入文件,但如果我想更改导入文件,并重新打开文件对话框,则会出错。有谁知道为什么会这样? 此外,我在调试时遇到问题,因为在dlg.ShowDialog()调用的同一行(或之前)上放置一个断点似乎也会导致出现此错误。 任何帮助将不胜感激?
答案 0 :(得分:7)
您只需一次点击即可执行两项操作。
您会显示一个消息框,该消息框可以有效地使用您的权限来显示用户操作的对话框。
然后尝试显示对话框,因为这是用户操作的第二个对话框,不允许这样做。
摆脱确认对话框,你会没事的。
答案 1 :(得分:0)
在 if(dlg.ShowDialog()?? false)之前删除断点,代码将为我运行。