关闭Window时出现DisconnectedContext异常

时间:2017-03-13 14:50:51

标签: wpf exception visual-studio-2015 window

我使用以下代码创建一个新的WPF Windows:

var window = new Window();
window.Title = draggingTabItem.Header as string;
window.Content = stateViewer; // this is an UserControl, it works
window.LocationChanged += Window_OnLocationChanged;
window.Show();

不在我打电话的时候

SelectedWindow.Close()

我收到DisconnectedContext异常。我找不到有关此异常的任何信息。这个例外是什么以及如何解决它?

this answer

我在MSDN上找到了{{3}},但我希望有一些东西不会抛出错误。

1 个答案:

答案 0 :(得分:0)

结束在异常设置中禁用DisconnectedContext和ContextSwitchDeadlock,这是我在第一个之后得到的。

enter image description here