首页 > 其他 > 详细

文本框检测回车按键或条码扫描结束回车符

时间:2021-04-17 22:52:51      阅读:30      评论:0      收藏:0      [点我收藏+]

private void textBox1_KeyPress(object sender, KeyPressEventArgs e)
{
try
{
if (e.KeyChar == (char)System.Windows.Forms.Keys.Enter)
{

//执行操作
if (this.textBox1.Text.Trim().Length == 0 )
{
MessageBox.Show("请输入");

return;
}
}
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
}

文本框检测回车按键或条码扫描结束回车符

原文:https://www.cnblogs.com/lzh_527/p/14672140.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!