添加一个按钮,并为按钮添加点击事件(注:Frm_Main为需要跳转的窗口名字)
private void Btn_OK_Click(object sender, EventArgs e)
{
//打开另一个窗口的同时关闭当前窗口
Thread th = new Thread(delegate () { new Frm_Main().ShowDialog(); });
th.Start();
this.Close();
}
添加一个按钮,并为按钮添加点击事件(注:Frm_Main为需要跳转的窗口名字)
private void Btn_OK_Click(object sender, EventArgs e)
{
//打开另一个窗口的同时关闭当前窗口
Thread th = new Thread(delegate () { new Frm_Main().ShowDialog(); });
th.Start();
this.Close();
}