.NET winform 的keypress事件中判断当用户按下的是哪个键
2020-12-13 02:52
标签:winform style class blog code tar keys是按键的枚举类型 .NET winform 的keypress事件中判断当用户按下的是哪个键,搜素材,soscw.com .NET winform 的keypress事件中判断当用户按下的是哪个键 标签:winform style class blog code tar 原文地址:http://www.cnblogs.com/wupeihong/p/3785357.htmlprivate void txtPropertyValue_KeyPress(object sender, KeyPressEventArgs e)
{
if ((Keys)e.KeyChar == Keys.Enter)
{
Save();
}
}
上一篇:JavaScript异步加载
下一篇:几种优秀的开发ASP的工具
文章标题:.NET winform 的keypress事件中判断当用户按下的是哪个键
文章链接:http://soscw.com/essay/26482.html