摘要: 1 <!--按钮样式--> 2 <Style TargetType="Button"> 3 <Setter Property="Foreground" Value="Black"/> 4 <!--修改模板属性--> 5 <Setter Property="Template"> 6 <Setter.Value> 7 <!--控件模板--> 8 <ControlTemplate TargetType="Button&qu 阅读全文
posted @ 2011-03-14 15:24 .net万剑 阅读(12242) 评论(0) 推荐(1)
摘要: KeyDown事件:2011-04-28优化Tab And RightCtrl private void tbCount_KeyDown(object sender, KeyEventArgs e) { TextBox txt = sender as TextBox; //屏蔽非法按键 if ((e.Key >= Key.NumPad0 && e.Key <= Key.NumPad9) || e.Key == Key.Decimal || e.Key.ToString() == "Tab") { if (txt.Text.Contains(&qu 阅读全文
posted @ 2011-03-14 15:11 .net万剑 阅读(10860) 评论(2) 推荐(5)