
WPF
TimeFuture2017
这个作者很懒,什么都没留下…
展开
-
WPF grid 跨两格
<Button Grid.Row="0" Grid.RowSpan="2" Grid.Column="0" Content="↓↑" Margin="2"/>//核心是RowSpan代表跨两格原创 2020-10-21 15:52:50 · 585 阅读 · 0 评论 -
WPF ComboBox 绑定选择事件
View层:xmlns:i=http://schemas.microsoft.com/expression/2010/interactivity<ComboBox x:Name="comboBox1" Height="23" Width="120" SelectedValuePath="StuId" DisplayMemberPath="StuName" ItemsSource="{Binding StudentList}"><i:Interaction.Triggers>&原创 2020-05-25 16:59:56 · 5153 阅读 · 0 评论 -
WPF TreeView 节点双击事件
private void MyTree_MouseLeftButtonDown(object sender, MouseButtonEventArgs e) { if(e.ClickCount != 2) { return; } if(null!=this.MyTree.SelectedItem) { var.原创 2020-05-24 17:01:37 · 2852 阅读 · 0 评论 -
Prism WPF 用法
1、2、命令属性:3、点击Order和勾选checkBox时:4、Xaml绑定数据:5、对话框类:原创 2020-03-15 17:01:38 · 642 阅读 · 0 评论 -
MVVM模式C#实现步骤
0、界面如下:一共三个edit,在Edit1和Edit2输入后,点击Add按钮,显示在Edit3中;1、写viewModel的基类 NotificationObject:2、数据属性和命令属性,实现 命令属性的基类:3、3个数据属性和2个命令属性(add和save),实现viewModel三个数据属性:add的命令属性,并在构造函数中关联:在xaml...原创 2020-03-13 17:42:49 · 5485 阅读 · 0 评论 -
WPF——xaml经验记录
1、xaml中,统一一个数值时,可以设置一个统一的变量,统一引用;<UserControl.Resources> // or wherever it's handy to stick the resource <GridLength x:Key="NormalWidth">50</GridLength></UserControl.Re...原创 2020-03-11 11:33:30 · 392 阅读 · 0 评论