我正在尝试在 silverlight 中创建一个 ChildWindow 供用户输入一些数据。每当我调用该.Show()
函数时,.Closed
事件都会立即触发。浏览器(IE8)然后一遍又一遍地抛出这个消息:
Line: 56
Error: Unhandled Error in Silverlight Application
Code: 2272
Category: ParserError
Message: Cannot find a Resource with the Name/Key PhoneDisabledBrush
File:
Line: 43
Position: 155
如果我点击这条消息大约 15 次,它最终会在 IE 中给我一个堆栈溢出错误。.Closed
在此消息出现之前,我从未真正看到 ChildWindow 显示,但是,它确实在这些错误发生之前经历了事件。
子窗口目前没有代码,只是添加了一些基本的 Silverlight 控件(文本块、文本框等)
子窗口的实例化如下:
public TickerAdminControl()
{
InitializeComponent();
winNewMsg = new windAddNewTickerMessage();
winNewMsg.Closed += new EventHandler(winNewMsg_Closed);
}
事件.Closed
如下所示:
void winNewMsg_Closed(object sender, EventArgs e)
{
if (winNewMsg.DialogResult == true)
{
TickerProxy.GetAllMessagesAsync();
}
}
它真的再简单不过了,所以我对这个错误感到困惑。在.Show()
UserControl 上的简单按钮单击事件中调用。
编辑:这只发生在 IE 上。如果我使用 Chrome,它无需更改任何代码即可工作。
第二次编辑:这似乎只发生在我从 Visual Studio 在调试中运行时。如果我手动启动站点(http://localhost:3881/Default.aspx)一切正常,这就是它在 Chrome 中工作的原因。当我手动访问它时,它也适用于 IE8。我想我现在更加困惑了。
第三次编辑:虽然在非调试中运行时一切似乎都正常,但错误仍然存在,但允许子窗口显示正确操作。在左下角,我收到一条“错误”消息,如果我单击它,它会重复此错误 15 次:
Message: Unhandled Error in Silverlight Application Error HRESULT E_FAIL has been returned from a call to a COM component.
at MS.Internal.XcpImports.VisualStateManager_GoToState(Control reference, String StateName, Boolean useTransitions, Boolean& refreshInheritanceContext)
at System.Windows.VisualStateManager.GoToState(Control control, String stateName, Boolean useTransitions)
at System.Windows.Controls.HyperlinkButton.ChangeVisualState(Boolean useTransitions)
at System.Windows.Controls.Primitives.ButtonBase.UpdateStateFlags(Boolean disable)
at System.Windows.Controls.Primitives.ButtonBase.OnIsEnabledChanged(IsEnabledChangedEventArgs e)
at System.Windows.Controls.Control.OnIsEnabledChanged(Control control, EventArgs args)
at MS.Internal.JoltHelper.FireEvent(IntPtr unmanagedObj, IntPtr unmanagedObjArgs, Int32 argsTypeIndex, Int32 actualArgsTypeIndex, String eventName, UInt32 flags)
Line: 1
Char: 1
Code: 0
URI: http://localhost:3881/default.aspx