C# WPF
隔壁的老李_
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
WPF自定义数字文本框控件
参考:https://www.cnblogs.com/yiyan127/p/WPF-NumbericTextBox.html#_label1转载 2018-09-17 10:53:59 · 1960 阅读 · 0 评论 -
WPF实现Timer控件
WPF不能从工具箱中拖Timer控件,需引用线程类 using System.Windows.Threading; 声明Timer private DispatcherTimer timer=new DispatcherTimer(); //WPF没有Timer控件,用DispatcherTimer实现Timer功能 给Timer控件添加事件(工作内容),循环时...原创 2018-09-17 13:57:20 · 1104 阅读 · 0 评论 -
WPF ComBox绑定数据
1、xmal文件中添加 DisplayMemberPath、SelectedValuePath属性 <ComboBox Name="MeaType" RenderTransformOrigin="1.72,2.273" Canvas.Left="48" Canvas.Top="226" Width="110" DisplayMemberPath="Name" Select原创 2018-09-18 10:41:05 · 14693 阅读 · 0 评论
分享