📜  如何在 C# 代码示例中从一种形式移动到另一种形式

📅  最后修改于: 2022-03-11 14:49:07.797000             🧑  作者: Mango

代码示例1
private void btnLogin_Click(object sender, EventArgs e)
{
     this.Close(); //Close Form1,the current open form.
 
     Form2 frm2 = new Form2();
 
     frm2.Show(); // Launch Form2,the new form.
}