本文介绍了在Silverlight中的OpenFileDialog上显示错误的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述



当我在silverlight .xaml.cs页面中使用以下代码时,其在fd.ShowDialog()上显示异常.行->使用的代码未处理SecurityException.
对话框必须是用户初始化的

Hi

When i am using below code in silverlight .xaml.cs page , its showing an exception on fd.ShowDialog(); line -> SecurityException was unhandled by used code.
Dialogs must be user-initialsed

OpenFileDialog fd = new OpenFileDialog();
fd.Filter = "Text Files (.txt)|*.txt|All Files (*.*)|*.*";
fd.FilterIndex = 1;
fd.Multiselect = true;
bool? userClickedOK = fd.ShowDialog();
if (userClickedOK == true)
MessageBox.Show("in OpenFileDialog box");



所以我不明白,究竟是什么问题.



so i am not getting, exactly whats the problem.

推荐答案


这篇关于在Silverlight中的OpenFileDialog上显示错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-23 12:02