作业要求
点击显示按钮标签中显示Hello World!点击清除按钮清除标签内容,点击弹出按钮弹出消息框。
代码
...
private void button1_Click(object
sender, EventArgs e) {
textBox1.Text = "Hello World!";
//向文本框输入"Hello World!" }
private void button2_Click(object
sender, EventArgs e) {
textBox1.Text = "";
//清除文本框 }
private void button3_Click(object
sender, EventArgs e) {
MessageBox.Show("弹出一个文本
框"); }
...