c#应用窗体中如何在button事件中去获取textbox的值

2024-10-29 09:30:45
推荐回答(3个)
回答1:

public static string textbox = string.Empty;//这么定义其他类就可以用Form1.text直接访问了
private void button1_Click(object sender, EventArgs e)
{
textbox = this.textBox1.Text;
//MessageBoxShow( this.textBox1.Text);

}

回答2:

public static string textbox = string.Empty;//这么定义其他类就可以用Form1.text直接访问了
private void button1_Click(object sender, EventArgs e)
{
textbox = this.textBox1.Text;
//MessageBoxShow( this.textBox1.Text);

}

回答3:

textbox1.text