在我目前的项目中。我单击一个按钮,主窗体将ShowIcon设置为false,将Visibility设置为false。一旦我终止第二个窗口,我想再次看到主窗体。通过将两个属性重置为true。怎么可能?
我在哪里放置代码。
答案 0 :(得分:0)
您可以覆盖OnFormClossing
事件
protected override void OnFormClosing(FormClosingEventArgs e)
{
// code that u want
}
答案 1 :(得分:0)
将此代码放在button_click
事件中:
newform nf = new newform(); //or whatever the name of your second form is
this.Hide(); //to hide your mainform
nf.ShowDialog();
this.Show(); //to show your mainform after closing your new form
nf.Dispose(); //optional