如何将form2设置为默认值?

时间:2015-10-24 12:16:56

标签: c# forms default

我想将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'");
    }

}

}

2 个答案:

答案 0 :(得分:3)

在应用程序的item_name文件中,修改起点(Program.cs方法),如下所示:

第1步:

Step 1

第2步:

Step 2

答案 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