
WPF
windowsliusheng
这个作者很懒,什么都没留下…
展开
-
WPF TreeView 中显示多列
//前台界面 <TreeView Name="treeViewType" SelectedItemChanged="treeView_SelectChange" Margin="10,10,10,0"> <TreeView.ItemTemplate> <Hier...原创 2018-11-19 16:22:24 · 2488 阅读 · 0 评论 -
WPF DevExpress GridControl使用
//前台界面<Window xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://schemas.microsoft.co...转载 2018-11-26 18:19:06 · 1447 阅读 · 0 评论 -
WPF TreeView加载多级节点
//前台界面 <TreeView Name="tvProperties" Width="250" Padding="0" Margin="0" BorderThickness="1"> <TreeView.ItemTemplate> <HierarchicalDataTem原创 2018-12-04 14:56:22 · 2166 阅读 · 0 评论 -
WPF TreeView 带复选框
//前台界面 <TreeView Name="TreeView_NodeList" BorderThickness="1" Margin="10,10,10,35"> <TreeView.Resources> <HierarchicalDataTemplate DataType="{x:Type local.转载 2018-12-05 15:47:36 · 2786 阅读 · 0 评论 -
WPF Treeview 显示多列
//前台界面<Window x:Class="WpfApp1.Window2" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="h...翻译 2018-12-21 17:30:43 · 1502 阅读 · 0 评论 -
WPF DataGrid 新增、删除行
//前台界面<Window x:Class="Demo.DataGrid" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="htt...原创 2018-12-26 10:43:25 · 14562 阅读 · 3 评论 -
WPF TreeView加载大类下的子类
//前台界面 <StackPanel> <TreeView Name="tvBuilding" Margin="0,0,0,0" Width="800" Height="400"> <TreeView.Resources> <原创 2019-01-02 17:12:35 · 189 阅读 · 0 评论 -
WPF ListBox示例
//前台界面 <ListBox Name="lbBuilding" HorizontalContentAlignment="Stretch" Height="400" Width="600" Margin="0,0,0,0"> <ListBox.ItemTemplate> <Da原创 2019-01-02 17:14:32 · 5800 阅读 · 0 评论 -
WPF ListBox横向排列自动换行显示表单
//前台界面 <Window.Resources> <Style x:Key="UserItemContainerStyle" TargetType="ListBoxItem"> <Style.Resources> <!--SelectedItem with focus-->...原创 2019-01-02 17:17:00 · 5158 阅读 · 0 评论