jonahxuworld 2022-01-07 15:19 采纳率: 93.1%
浏览 169
已结题

C#Winform文本框输入后清空,再次输入就有问题,不清空手工清空就没问题,为什么?

我的步骤是
1、随便输会提示格式错误
2、然后输入正确的格式,如果有textBox1.Text = "",他就会报第二张图的错误,如果注释掉,手工全选清除再输入就正确

img

这个工单为空是接口给的错误信息,我直接那来调用的
但是如果我注释掉textBox1.Text = "";然后手工全选删除,再输入后就能获取到工单了!请问为什么

img


        private void textBox1_KeyPress(object sender, KeyPressEventArgs e)
        {
            if (e.KeyChar == 13)
            {
                string pattern = @"\d*-\d*-\d*";
                Regex regex = new Regex(pattern);
                if (!regex.IsMatch(this.textBox1.Text.Trim()))
                {
                    MessageBox.Show("格式错误!");
                    judgement = 1;
                }
                else
                {
                    if (judgement == 1)
                    {
                        judgement = 0;
                        string sendjson = "work_order_no=" + textBox1.Text;
                        requestorder("http://xxx", sendjson, "POST");
                    }
                }
                textBox1.Text = "";
            }
        }
  • 写回答

3条回答 默认 最新

  • 神仙别闹 2022-01-07 16:41
    关注

    改成这样试一下是什么效果

     private void textBox1_KeyPress(object sender, KeyPressEventArgs e)
            {
                string val = this.textBox1.Text.Trim();
                if (e.KeyChar == 13)
                {
                    string pattern = @"\d*-\d*-\d*";
                    Regex regex = new Regex(pattern);
                    if (!regex.IsMatch(val))
                    {
                        MessageBox.Show("格式错误!");
                        judgement = 1;
                    }
                    else
                    {
                        if (judgement == 1)
                        {
                            judgement = 0;
                            string sendjson = "work_order_no=" + val;
                            requestorder("http://xxx", sendjson, "POST");
                        }
                    }
                    textBox1.Text = "";
                }
            }
    
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

问题事件

  • 系统已结题 1月18日
  • 已采纳回答 1月10日
  • 修改了问题 1月7日
  • 创建了问题 1月7日

悬赏问题

  • ¥60 不懂得怎么运行下载来的代码
  • ¥15 CST导出3D模型图为什么和软件显示不一样?
  • ¥15 加热反应炉PLC控制系统设计(相关搜索:梯形图)
  • ¥15 python 用Dorc包报错,我的写法和网上教的是一样的但是它显示无效参数,是什么问题
  • ¥15 经过滑动平均后的一维信号还原用什么结构好呢?
  • ¥15 指定IP电脑的访问设置
  • ¥30 matlab ode45 未发现警告,但是运行出错
  • ¥15 为什么devc++编译项目会失败啊
  • ¥15 vscode platformio
  • ¥15 代写uni代码,app唤醒