if (textBox1.Text != "")
{
button1.Text = "1不为空";
}
else if (textBox2.Text != "")
{
button1.Text = "2不为空";
}
else
{
button1.Text = "全空";
}

被折叠的 条评论
为什么被折叠?



