我刚刚开始使用.NET C#visual studio组合。并试图弄清楚如何测试表格。
我有以下代码:
static void Main(string[] args)
{
Form1 Form = new Form1();
Form.setText("Hello World!");
}
并在我的Form1类中:
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
label1.Text = textBox1.Text;
}
public void setText(String text)
{
label1.Text = text;
}
}
当我点击开始时,没有任何内容打开,这正是我所希望的。在我看到实际使用中的表格结果之前,我是否遗漏了一些东西?
答案 0 :(得分:3)
使用ShowDialog()
查看表单:
static void Main(string[] args)
{
Form1 Form = new Form1();
Form.setText("Hello World!");
Form.ShowDialog();
}