C#窗口错误
具体的错误是,我在主窗口打开了一个新的窗口,我关闭它之后,重新打开,就出现了这个错误
这个错误是这样的,如下图所示
两种解决方式,其实本质上是一种,就是重写窗口的Onclosing的方法。
第一种,直接在被调用窗口的cs里面重写这个方法,如下图所示。
protected override void OnClosing(CancelEventArgs e)
{
e.Cancel = true; // cancels the window close
this.Hide(); // Programmatically hides the window
}
第二种,也可以在调用的当前窗口进行一个设置,只需要在调用前加上
window.Closing += new CancelEventHandler(onClosing);
public static void onClosing(object sender, CancelEventArgs e)
{
e.Cancel = true;
window.Hide();
}
这个window是被调用窗口的对象实例