会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
码农一枚
博客园
首页
新随笔
联系
管理
订阅
2010年1月9日
WinForm中的TextBox控件输入全角数字自动转为半角数字
摘要: 给TextBox控件加上KeyPress事件,事件代码如下: private void textBox1_KeyPress(object sender, KeyPressEventArgs e) { if ((int)e.KeyChar >= 65296 && (int)e.KeyChar <= 65305) { e.KeyChar = (char)((int)e.KeyChar - 65248); } }
阅读全文
posted @ 2010-01-09 16:40 冯翔
阅读(582)
评论(0)
推荐(0)
编辑
公告