我正在创建一个本机 C# 应用程序,我需要做一件简单的事情:一旦用户单击某个按钮,就会打开另一个 .cs 文件(具有自己的设计、代码和内容)。如果可能的话,我想知道如何同时关闭当前表单。
编辑:我到底需要什么:
namespace Mokesciai
{
public partial class Mokesciai : Form
{
public Mokesciai()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
//write code here to open another page called "NewPage.cs" with its own subfiles "NewPage.Designer.cs" and
//"NewPage.resx", as shown in the solution explorer
}
}
}
该应用程序是 C# Windows 应用程序
EDIT2:我想要的图形方式:http ://sdrv.ms/JXKVEL 点击“点击我”我想打开新表单