如何将可见性窗口属性从一种形式更改为另一种形式?

时间:2013-02-17 02:18:03

标签: c# winforms properties window visibility

在我目前的项目中。我单击一个按钮,主窗体将ShowIcon设置为false,将Visibility设置为false。一旦我终止第二个窗口,我想再次看到主窗体。通过将两个属性重置为true。怎么可能?

我在哪里放置代码。

2 个答案:

答案 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