在控件textBox3的Click事件中添加
private void textBox3_Click(object sender, EventArgs e)
{
if (textBox1.Text != null && textBox2.Text != null)
{
textBox3.Text = textBox1.Text + textBox2.Text;
MessageBox.Show("你好,你已输入了数据,你输入的内容为" + textBox3.Text);
}
}
textbox3.Text=String.Format(@"你好,你己输入了数据,你输入的内容为({0},{1})",textBox1.Text,textBox2.Text);
textBox3.Text="你输入的内容为("+textBox1.Text+","+textBox2.Text+")";