📜  使用 C# Winforms 打开另一个表单 - C# 代码示例

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

代码示例1
Form myForm = new myForm();
myForm.Show();

//If you want to close the current form after the new one opens, then write in a new line, "this.Close();"