单击按钮时如何打开另一个表单?

时间:2015-06-21 11:05:28

标签: c# winforms

我在我的项目中制作了另一个表单,我想知道如何在另一个表单中打开?能帮帮我吗?

以下是我到目前为止的代码:

score

帮助我,我是c#

的初学者

1 个答案:

答案 0 :(得分:1)

有两种选择:

  1. 在Visual Studio Designer中设计表单并在代码中打开此实例
  2. 创建新表单并在代码中添加元素(标签,...)
  3. 1:

    Form2 frm2 = new Form2();
    frm2.Open();
    

    2:

    Form aForm = new Form();
    aForm.Text = "Title";
    
    //Add Elements
    Label l1 = new Label();
    l1.Text = "Some Text";
    l1.Location = new Point(10, 10);
    
    aForm.Children.Add(l1);
    
    //Show Form
    aForm.Show();