首页 > 学院 > 开发设计 > 正文

.net键盘

2019-11-14 16:02:00
字体:
来源:转载
供稿:网友

PRivate void txtGoodsGroup_KeyPress(object sender, KeyPressEventArgs e)
{
base.OnKeyPress(e);
if ((int)e.KeyChar >= 65296 && (int)e.KeyChar <= 65305)
{
e.KeyChar = (char)((int)e.KeyChar - 65248);
}
}

 

回车

e.KeyChar == 13


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表