请教:多个textBox是否已经输入的判断问题
请教:多个textBox是否已经输入的判断问题背景:3个textBox, 1个button;
需求是:
1.textBox1 有输入,则button执行A语句;
2.textBox1,textBox2有输入,则button执行B语句;
3.textBox1,textBox2,textBox3有输入,则button执行C语句;
但以下代码始终执行的是else , 麻烦各位了:
if ((textBox1.Text.Trim().Length > 0) && (textBox2.Text.Trim().Length == 0) && (textBox3.Text.Trim().Length == 0))
{
label11.Text = "textBox1有输入";
}
if ((textBox1.Text.Trim().Length > 0) && (textBox2.Text.Trim().Length > 0) && (textBox3.Text.Trim().Length == 0))
{
label11.Text = "textBox1,textBox2有输入";
}
if ((textBox1.Text.Trim().Length > 0) && (textBox2.Text.Trim().Length > 0) && (textBox3.Text.Trim().Length > 0))
{
label11.Text = "textBox1,textBox2,textBox3有输入";
}
else
{
label11.Text = "例外";
}