盟讯公司1.搜索栏可以输入英文字符 2.退出出库模式异常
This commit is contained in:
@ -62,7 +62,8 @@ namespace 货架标准上位机
|
||||
|
||||
private void txtMatQty1_PreviewTextInput(object sender, TextCompositionEventArgs e)
|
||||
{
|
||||
if (!Regex.IsMatch(e.Text, "^[0-9]"))
|
||||
//要求可以输入英文字符
|
||||
if (!Regex.IsMatch(e.Text, @"^[0-9A-Za-z]+$"))
|
||||
{
|
||||
e.Handled = true;
|
||||
}
|
||||
|
Reference in New Issue
Block a user