标题:请教:多个textBox是否已经输入的判断问题
取消只看楼主
smilelake
Rank: 2
等 级:论坛游民
威 望:1
帖 子:31
专家分:30
注 册:2012-8-23
结帖率:0
已结贴  问题点数:18 回复次数:0 
请教:多个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 = "例外";
            }
搜索更多相关主题的帖子: button 
2012-11-27 12:52



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-388686-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.201710 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved