winform新窗体打开同时隐藏主窗体
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了winform新窗体打开同时隐藏主窗体相关的知识,希望对你有一定的参考价值。
我的思路是将窗体作为参数来传递
private void button1_Click(object sender, EventArgs e)
{
Form2 f = new Form2(this);
f.Show();
this.Hide();
}
form2中代码
private Form parent;
public Form2(System.Windows.Forms.Form f)
{
InitializeComponent();
this.parent = f;
}
private void button1_Click(object sender, EventArgs e)
{
parent.Show();
this.Hide();
}
然而最简单的是
private void click()
{
Form2 f2=new Form2();
this.Hide();
f2.ShowDialog();
this.show();
}
以上是关于winform新窗体打开同时隐藏主窗体的主要内容,如果未能解决你的问题,请参考以下文章
在winform的MDI窗体中,打开一个新的子窗体的同时如何关闭前一个子窗体?