在窗体中设置两个控件分别是:button按钮和textBox文本框,将button按钮的值设为“点 它”,然后在按钮事件中写上以下代码就可以在文本框中显示你要想写的内容了!下面是我给你的例子:
if (this.button1.Text == "点 它")
{
this.textBox1.Text = "你好!";
this.button1.Text = "再 点";
}
else if (this.button1.Text == "再 点")
{
this.textBox1.Text = "我是×××!";
this.button1.Text = "继续点";
}
else if (this.button1.Text == "继续点")
{
this.textBox1.Text = "请问,你认识我吗?";
this.button1.Text = "再继续点";
}
else if (this.button1.Text == "再继续点")
{
this.textBox1.Text = "我们可以做朋友吗?";
this.button1.Text = "确 定";
}
else
{
return;
}
谢谢采纳!!
温馨提示:答案为网友推荐,仅供参考