📌  相关文章
📜  Visual Studio 从按钮添加新表单 - 无论代码示例

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

代码示例1
/// first go to projects, then  click on "New Form" then click the option that says "Windows Form"
/// Now just copypaste this code into the button you want to add the second form to. (Make sure that the name is the same

var newForm = new NAME();
newForm.Show();