我想将form2设置为默认值。 我的程序从Form1.cs开始,我希望他从form2.cs开始 这是form1,我必须做什么?
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
MessageBox.Show("Form1");
}
这是Form2
public partial class settings : Form
{
public settings()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
MessageBox.Show("'Reported'");
}
}
}
答案 0 :(得分:3)
答案 1 :(得分:0)
对于初学者来说,这可能有点麻烦,应用程序的起点是Program.cs文件中的Main()方法,如果你打开它,你会看到类似这样的东西:
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
}
}
您所要做的就是使用起始格式更改 Form1 。