01 2021 档案

摘要:WPF TextBox限制只能输入数字 private void TextBox_KeyDown(object sender, KeyEventArgs e) { TextBox txt = sender as TextBox; // 过滤按键 if ((e.Key >= Key.NumPad0 & 阅读全文
posted @ 2021-01-18 10:23 循序渐进。 阅读(285) 评论(0) 推荐(0)
摘要:VS2013 WPF 设计界面引发了异常 开发WPF程序时设计界面经常出现报错,显示“引发了异常”,界面不能正常显示。 解决方案,在界面构造函数中加上如下代码,设计界面不执行代码 bool designTime = (bool)DesignerProperties.IsInDesignModePro 阅读全文
posted @ 2021-01-05 16:57 循序渐进。 阅读(165) 评论(0) 推荐(0)