WPF 基础控件之 DataGrid 样式

此群已满340500857 ,请加新群458041663

       由于微信群人数太多入群请添加小编微信号

 yanjinhuawechatW_Feng_aiQ 邀请入群

 需备注WPF开发者 

 PS:有更好的方式欢迎推荐。

支持Nuget

Install-Package WPFDevelopers.Minimal -Version 3.2.0

01

代码如下

一、创建 Styles.DataGrid.xaml 代码如下。

<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"xmlns:sys="clr-namespace:System;assembly=mscorlib"><ResourceDictionary.MergedDictionaries><ResourceDictionary Source="../Themes/Basic/ControlBasic.xaml"/><ResourceDictionary Source="../Themes/Basic/Animations.xaml"/><ResourceDictionary Source="Styles.ScrollBar.xaml"/></ResourceDictionary.MergedDictionaries><!--Style and template for the button in the upper left corner of the DataGrid.--><Style TargetType="{x:Type Button}"x:Key="{ComponentResourceKey ResourceId=DataGridSelectAllButtonStyle, TypeInTargetAssembly={x:Type DataGrid}}" BasedOn="{StaticResource ControlBasicStyle}"><Setter Property="Cursor" Value="Hand"/><Setter Property="Template"><Setter.Value><ControlTemplate TargetType="{x:Type Button}"><Border Background="{DynamicResource WhiteSolidColorBrush}"BorderThickness="0,0,0,1"BorderBrush="{DynamicResource BaseSolidColorBrush}"><VisualStateManager.VisualStateGroups><VisualStateGroup x:Name="CommonStates"><VisualState x:Name="Normal" /><VisualState x:Name="MouseOver"/><VisualState x:Name="Pressed"/></VisualStateGroup></VisualStateManager.VisualStateGroups><!--<Polygon x:Name="Arrow"HorizontalAlignment="Right"Margin="8,8,3,3"Opacity="0.15"Points="0,10 10,10 10,0"Stretch="Uniform"VerticalAlignment="Bottom"><Polygon.Fill><SolidColorBrush Color="{DynamicResource PrimaryTextColor}" /></Polygon.Fill></Polygon>--><Polygon x:Name="Arrow" Opacity="1"Margin="0,2,0,0"Points="0,10 10,10 10,0"Stretch="Uniform"VerticalAlignment="Center"><Polygon.Fill><SolidColorBrush Color="{DynamicResource PrimaryTextColor}" /></Polygon.Fill></Polygon></Border><ControlTemplate.Triggers><Trigger Property="IsMouseOver" Value="True"><Setter Property="Fill" Value="{DynamicResource PrimaryMouseOverSolidColorBrush}" TargetName="Arrow"/></Trigger></ControlTemplate.Triggers></ControlTemplate></Setter.Value></Setter></Style><!--Style and template for the DataGrid.--><Style TargetType="{x:Type DataGrid}" BasedOn="{StaticResource ControlBasicStyle}"><Setter Property="Foreground" Value="{DynamicResource PrimaryTextSolidColorBrush}" /><Setter Property="BorderThickness" Value="1,1,1,0"/><Setter Property="BorderBrush" Value="{DynamicResource BaseSolidColorBrush}"/><Setter Property="RowDetailsVisibilityMode" Value="VisibleWhenSelected" /><Setter Property="ScrollViewer.CanContentScroll" Value="True" /><Setter Property="ScrollViewer.PanningMode" Value="Both" /><Setter Property="Stylus.IsFlicksEnabled" Value="False" /><Setter Property="HorizontalGridLinesBrush" Value="{x:Null}"/><Setter Property="VerticalGridLinesBrush" Value="{x:Null}"/><Setter Property="MinRowHeight" Value="{DynamicResource MinDataGridRowHeight}"/><Setter Property="CanUserAddRows" Value="False"/><Setter Property="AutoGenerateColumns" Value="False"/><Setter Property="RowHeaderWidth" Value="0"/><Setter Property="Template"><Setter.Value><ControlTemplate TargetType="{x:Type DataGrid}"><Border x:Name="border"SnapsToDevicePixels="True"BorderBrush="{TemplateBinding BorderBrush}"BorderThickness="{TemplateBinding BorderThickness}"Padding="{TemplateBinding Padding}"><Border.Background><SolidColorBrush Color="{DynamicResource WhiteColor}" /></Border.Background><VisualStateManager.VisualStateGroups><VisualStateGroup x:Name="CommonStates"><VisualState x:Name="Disabled"/><VisualState x:Name="Normal" /></VisualStateGroup></VisualStateManager.VisualStateGroups><ScrollViewer x:Name="DG_ScrollViewer" Focusable="false"><ScrollViewer.Template><ControlTemplate TargetType="{x:Type ScrollViewer}"><Grid><!--<Grid.ColumnDefinitions><ColumnDefinition Width="Auto" /><ColumnDefinition Width="*" /><ColumnDefinition Width="Auto" /></Grid.ColumnDefinitions>--><Grid.ColumnDefinitions><ColumnDefinition Width="Auto" /><ColumnDefinition Width="*" /></Grid.ColumnDefinitions><Grid.RowDefinitions><RowDefinition Height="Auto" /><RowDefinition Height="*" /><RowDefinition Height="Auto" /></Grid.RowDefinitions><Button Focusable="False"Command="{x:Static DataGrid.SelectAllCommand}"Style="{DynamicResource {ComponentResourceKey ResourceId=DataGridSelectAllButtonStyle, TypeInTargetAssembly={x:Type DataGrid}}}"Visibility="{Binding HeadersVisibility, ConverterParameter={x:Static DataGridHeadersVisibility.All}, Converter={x:Static DataGrid.HeadersVisibilityConverter}, RelativeSource={RelativeSource AncestorType={x:Type DataGrid}}}"Width="{Binding CellsPanelHorizontalOffset, RelativeSource={RelativeSource AncestorType={x:Type DataGrid}}}" /><DataGridColumnHeadersPresenter x:Name="PART_ColumnHeadersPresenter"Grid.Column="1" Visibility="{Binding HeadersVisibility, ConverterParameter={x:Static DataGridHeadersVisibility.Column}, Converter={x:Static DataGrid.HeadersVisibilityConverter}, RelativeSource={RelativeSource AncestorType={x:Type DataGrid}}}" /><ScrollContentPresenter x:Name="PART_ScrollContentPresenter"Grid.ColumnSpan="2"Grid.Row="1"CanContentScroll="{TemplateBinding CanContentScroll}" /><ScrollBar x:Name="PART_VerticalScrollBar"Grid.Column="1" HorizontalAlignment="Right"Grid.Row="1"Orientation="Vertical"ViewportSize="{TemplateBinding ViewportHeight}"Maximum="{TemplateBinding ScrollableHeight}"Visibility="{TemplateBinding ComputedVerticalScrollBarVisibility}"Value="{Binding VerticalOffset, Mode=OneWay, RelativeSource={RelativeSource TemplatedParent}}"/><Grid Grid.Column="1"Grid.Row="2"><Grid.ColumnDefinitions><ColumnDefinition Width="{Binding NonFrozenColumnsViewportHorizontalOffset, RelativeSource={RelativeSource AncestorType={x:Type DataGrid}}}" /><ColumnDefinition Width="*" /></Grid.ColumnDefinitions><ScrollBar x:Name="PART_HorizontalScrollBar"Grid.Column="1"Orientation="Horizontal"ViewportSize="{TemplateBinding ViewportWidth}"Maximum="{TemplateBinding ScrollableWidth}"Visibility="{TemplateBinding ComputedHorizontalScrollBarVisibility}"Value="{Binding HorizontalOffset, Mode=OneWay, RelativeSource={RelativeSource TemplatedParent}}"/></Grid></Grid></ControlTemplate></ScrollViewer.Template><ItemsPresenter SnapsToDevicePixels="{TemplateBinding SnapsToDevicePixels}" /></ScrollViewer></Border></ControlTemplate></Setter.Value></Setter><Style.Triggers><Trigger Property="IsGrouping" Value="True"><Setter Property="ScrollViewer.CanContentScroll" Value="False" /></Trigger></Style.Triggers></Style><!--Style and template for the DataGridCell.--><Style TargetType="{x:Type DataGridCell}" BasedOn="{StaticResource ControlBasicStyle}"><Setter Property="Template"><Setter.Value><ControlTemplate TargetType="{x:Type DataGridCell}"><Border x:Name="border"BorderBrush="Transparent"BorderThickness="1" Background="Transparent"SnapsToDevicePixels="True"><VisualStateManager.VisualStateGroups><VisualStateGroup x:Name="FocusStates"><VisualState x:Name="Unfocused" /><VisualState x:Name="Focused" /></VisualStateGroup><VisualStateGroup x:Name="CurrentStates"><VisualState x:Name="Regular" /><VisualState x:Name="Current"/></VisualStateGroup></VisualStateManager.VisualStateGroups><ContentPresenter SnapsToDevicePixels="{TemplateBinding SnapsToDevicePixels}" VerticalAlignment="Center" HorizontalAlignment="Center"/></Border></ControlTemplate></Setter.Value></Setter><Style.Triggers><MultiTrigger><MultiTrigger.Conditions><Condition Property="IsSelected" Value="True"/><Condition Property="Selector.IsSelectionActive" Value="True"/></MultiTrigger.Conditions><Setter Property="Foreground" Value="{DynamicResource PrimaryTextSolidColorBrush}"/><Setter Property="Background" Value="{DynamicResource BaseSolidColorBrush}" /></MultiTrigger></Style.Triggers></Style><!--Style and template for the DataGridRow.--><Style TargetType="{x:Type DataGridRow}" BasedOn="{StaticResource ControlBasicStyle}"><Setter Property="SnapsToDevicePixels" Value="True" /><Setter Property="Validation.ErrorTemplate" Value="{x:Null}" /><Setter Property="BorderThickness" Value="0,0,0,1"/><Setter Property="BorderBrush" Value="{DynamicResource BaseSolidColorBrush}"/><Setter Property="Cursor" Value="Hand"/><Setter Property="ValidationErrorTemplate"><Setter.Value><ControlTemplate><TextBlock Foreground="Red" Margin="2,0,0,0" Text="!" VerticalAlignment="Center" /></ControlTemplate></Setter.Value></Setter><Setter Property="Template"><Setter.Value><ControlTemplate TargetType="{x:Type DataGridRow}"><Border x:Name="DGR_Border"BorderBrush="{TemplateBinding BorderBrush}"BorderThickness="{TemplateBinding BorderThickness}"SnapsToDevicePixels="True" ><Border.Background><SolidColorBrush Color="{DynamicResource WhiteColor}"/></Border.Background><VisualStateManager.VisualStateGroups><VisualStateGroup x:Name="CommonStates"><VisualState x:Name="Normal" /><VisualState x:Name="Normal_AlternatingRow"/><VisualState x:Name="Normal_Selected"/><VisualState x:Name="Unfocused_Selected"/><VisualState x:Name="Normal_Editing"/><VisualState x:Name="MouseOver_Editing"><Storyboard><ColorAnimation Storyboard.TargetName="DGR_Border"Storyboard.TargetProperty="(Panel.Background).(SolidColorBrush.Color)" To="{DynamicResource DefaultBackgroundColor}"></ColorAnimation></Storyboard></VisualState><VisualState x:Name="MouseOver_Unfocused_Editing"/><VisualState x:Name="Unfocused_Editing"/><VisualState x:Name="MouseOver"><Storyboard><ColorAnimation Storyboard.TargetName="DGR_Border" Duration="0:0:0.2"Storyboard.TargetProperty="(Panel.Background).(SolidColorBrush.Color)" To="{DynamicResource BaseMoveColor}"></ColorAnimation></Storyboard></VisualState><VisualState x:Name="MouseOver_Selected"><Storyboard><ColorAnimation Storyboard.TargetName="DGR_Border" Duration="0:0:0.2"Storyboard.TargetProperty="(Panel.Background).(SolidColorBrush.Color)" To="{DynamicResource BaseMoveColor}"></ColorAnimation><!--<DoubleAnimation Storyboard.TargetName="PART_MouseOver" Duration="0:0:0.3"Storyboard.TargetProperty="(Rectangle.RenderTransform).(ScaleTransform.ScaleX)"To="1"/><DoubleAnimation Storyboard.TargetName="PART_MouseOver" Duration="0:0:0.01" BeginTime="0:0:0.3"Storyboard.TargetProperty="(Rectangle.RenderTransform).(ScaleTransform.ScaleX)"To="0"/>--></Storyboard></VisualState><VisualState x:Name="MouseOver_Unfocused_Selected"/></VisualStateGroup></VisualStateManager.VisualStateGroups><!--<Grid>--><!--<Rectangle x:Name="PART_MouseOver"Fill="{DynamicResource PrimaryMouseOverSolidColorBrush}"RenderTransformOrigin="0,1"><Rectangle.RenderTransform><ScaleTransform ScaleY="1" ScaleX="0"/></Rectangle.RenderTransform></Rectangle>--><!--</Grid>--><SelectiveScrollingGrid><SelectiveScrollingGrid.ColumnDefinitions><ColumnDefinition Width="Auto" /><ColumnDefinition Width="*" /></SelectiveScrollingGrid.ColumnDefinitions><SelectiveScrollingGrid.RowDefinitions><RowDefinition Height="*" /><RowDefinition Height="Auto" /></SelectiveScrollingGrid.RowDefinitions><DataGridCellsPresenter Grid.Column="1"ItemsPanel="{TemplateBinding ItemsPanel}"SnapsToDevicePixels="{TemplateBinding SnapsToDevicePixels}" /><DataGridDetailsPresenter Grid.Column="1"Grid.Row="1"Visibility="{TemplateBinding DetailsVisibility}"SelectiveScrollingGrid.SelectiveScrollingOrientation="{Binding AreRowDetailsFrozen, ConverterParameter={x:Static SelectiveScrollingOrientation.Vertical},Converter={x:Static DataGrid.RowDetailsScrollingConverter}, RelativeSource={RelativeSource AncestorType={x:Type DataGrid}}}"/><DataGridRowHeader Grid.RowSpan="2"SelectiveScrollingGrid.SelectiveScrollingOrientation="Vertical"Visibility="{Binding HeadersVisibility, ConverterParameter={x:Static DataGridHeadersVisibility.Row}, Converter={x:Static DataGrid.HeadersVisibilityConverter}, RelativeSource={RelativeSource AncestorType={x:Type DataGrid}}}" /></SelectiveScrollingGrid></Border></ControlTemplate></Setter.Value></Setter><!--<Style.Triggers><Trigger Property="IsSelected" Value="True"><Setter Property="Background" Value="{DynamicResource BaseSolidColorBrush}" /></Trigger><Trigger Property="IsMouseOver" Value="True"><Setter Property="Background" Value="{DynamicResource BaseSolidColorBrush}" /></Trigger></Style.Triggers>--></Style><!--Style and template for the resize control on the DataGridRowHeader.--><Style x:Key="RowHeaderGripperStyle"TargetType="{x:Type Thumb}" BasedOn="{StaticResource ControlBasicStyle}"><Setter Property="Height"Value="8" /><Setter Property="Background"Value="Transparent" /><Setter Property="Cursor"Value="SizeNS" /><Setter Property="Template"><Setter.Value><ControlTemplate TargetType="{x:Type Thumb}"><Border Background="{TemplateBinding Background}"Padding="{TemplateBinding Padding}" /></ControlTemplate></Setter.Value></Setter></Style><!--Style and template for the DataGridRowHeader.--><Style TargetType="{x:Type DataGridRowHeader}"><Setter Property="Template"><Setter.Value><ControlTemplate TargetType="{x:Type DataGridRowHeader}"><Grid HorizontalAlignment="Center"><VisualStateManager.VisualStateGroups><VisualStateGroup x:Name="CommonStates"><VisualState x:Name="Normal" /><VisualState x:Name="Normal_CurrentRow" /><VisualState x:Name="Unfocused_EditingRow" /><VisualState x:Name="Normal_EditingRow" /><VisualState x:Name="MouseOver"/><VisualState x:Name="MouseOver_CurrentRow" /><VisualState x:Name="MouseOver_Unfocused_EditingRow" /><VisualState x:Name="MouseOver_EditingRow" /><VisualState x:Name="MouseOver_Unfocused_Selected" /><VisualState x:Name="MouseOver_Selected" /><VisualState x:Name="MouseOver_Unfocused_CurrentRow_Selected" /><VisualState x:Name="MouseOver_CurrentRow_Selected" /><VisualState x:Name="Unfocused_Selected" /><VisualState x:Name="Unfocused_CurrentRow_Selected" /><VisualState x:Name="Normal_CurrentRow_Selected" /><VisualState x:Name="Normal_Selected" /></VisualStateGroup></VisualStateManager.VisualStateGroups><Border x:Name="rowHeaderBorder" Background="Transparent"><StackPanel Orientation="Horizontal"><ContentPresenter VerticalAlignment="Center"SnapsToDevicePixels="{TemplateBinding SnapsToDevicePixels}" /><Control SnapsToDevicePixels="false"Template="{Binding ValidationErrorTemplate, RelativeSource={RelativeSource AncestorType={x:Type DataGridRow}}}"Visibility="{Binding (Validation.HasError), Converter={StaticResource bool2VisibilityConverter}, RelativeSource={RelativeSource AncestorType={x:Type DataGridRow}}}" /></StackPanel></Border><Thumb x:Name="PART_TopHeaderGripper"Style="{StaticResource RowHeaderGripperStyle}"VerticalAlignment="Top" /><Thumb x:Name="PART_BottomHeaderGripper"Style="{StaticResource RowHeaderGripperStyle}"VerticalAlignment="Bottom" /></Grid></ControlTemplate></Setter.Value></Setter></Style><!--Style and template for the resize control on the DataGridColumnHeader.--><Style x:Key="ColumnHeaderGripperStyle"TargetType="{x:Type Thumb}" BasedOn="{StaticResource ControlBasicStyle}"><!--<Setter Property="Width"Value="8" /><Setter Property="Background"Value="Transparent" /><Setter Property="Cursor"Value="SizeWE" /><Setter Property="Template"><Setter.Value><ControlTemplate TargetType="{x:Type Thumb}"><Border Background="{TemplateBinding Background}"Padding="{TemplateBinding Padding}" /></ControlTemplate></Setter.Value></Setter>--><Setter Property="Width" Value="8" /><Setter Property="Background" Value="Transparent"/><Setter Property="Cursor" Value="SizeWE" /><Setter Property="Template"><Setter.Value><ControlTemplate TargetType="{x:Type Thumb}"><Border Padding="{TemplateBinding Padding}" Background="Transparent"><Rectangle HorizontalAlignment="Center" Width="1"  Fill="{TemplateBinding Background}" /></Border><ControlTemplate.Triggers><Trigger Property="IsMouseOver" Value="True"><Setter Property="Background" Value="{DynamicResource PrimaryMouseOverSolidColorBrush}"/></Trigger></ControlTemplate.Triggers></ControlTemplate></Setter.Value></Setter></Style><!--Style and template for the DataGridColumnHeader.--><Style TargetType="{x:Type DataGridColumnHeader}" BasedOn="{StaticResource ControlBasicStyle}"><Setter Property="Cursor" Value="Hand"/><Setter Property="VerticalContentAlignment" Value="Center" /><Setter Property="Template"><Setter.Value><ControlTemplate TargetType="{x:Type DataGridColumnHeader}"><ControlTemplate.Resources><Storyboard x:Key="StoryboardAscending"><DoubleAnimation Storyboard.TargetProperty="(Path.RenderTransform).(RotateTransform.Angle)"Storyboard.TargetName="SortArrow"Duration="00:00:.2" To="180"/></Storyboard><Storyboard x:Key="StoryboardDescending"><DoubleAnimation Storyboard.TargetProperty="(Path.RenderTransform).(RotateTransform.Angle)"Storyboard.TargetName="SortArrow"Duration="00:00:.2" To="0"/></Storyboard></ControlTemplate.Resources><Grid><Border x:Name="columnHeaderBorder" Background="{DynamicResource WhiteSolidColorBrush}"Padding="10"BorderThickness="0,0,0,1" BorderBrush="{DynamicResource BaseSolidColorBrush}"><Grid Name="HedearGrid"><Grid.ColumnDefinitions><ColumnDefinition Width="*" /><ColumnDefinition Width="Auto" /></Grid.ColumnDefinitions><ContentPresenter HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}"SnapsToDevicePixels="{TemplateBinding SnapsToDevicePixels}" VerticalAlignment="{TemplateBinding VerticalContentAlignment}" TextElement.FontWeight="ExtraBlack"/><Path x:Name="SortArrow" Visibility="Collapsed"  Data="{StaticResource PathSortArrow}" Stretch="Fill" Grid.Column="1" Width="10" Height="10" Fill="{DynamicResource PrimaryPressedSolidColorBrush}"Margin="4,0,0,0"VerticalAlignment="Center" RenderTransformOrigin="0.5,0.5" ><Path.RenderTransform><RotateTransform/></Path.RenderTransform></Path></Grid></Border><Thumb x:Name="PART_LeftHeaderGripper"HorizontalAlignment="Left"Style="{StaticResource ColumnHeaderGripperStyle}" /><Thumb x:Name="PART_RightHeaderGripper"HorizontalAlignment="Right"Style="{StaticResource ColumnHeaderGripperStyle}" /></Grid><ControlTemplate.Triggers><Trigger Property="SortDirection" Value="Ascending"><Setter TargetName="SortArrow" Property="Visibility" Value="Visible" /><Trigger.ExitActions><StopStoryboard BeginStoryboardName="StoryboardAscendingBeginStoryboard" /></Trigger.ExitActions><Trigger.EnterActions><BeginStoryboard x:Name="StoryboardAscendingBeginStoryboard" Storyboard="{StaticResource StoryboardAscending}" /></Trigger.EnterActions><!--<Setter TargetName="SortArrow" Property="RenderTransform"><Setter.Value><RotateTransform Angle="180" /></Setter.Value></Setter>--><!--<Setter TargetName="SortArrow" Property="Margin" Value="4,4,0,0"/>--></Trigger><Trigger Property="SortDirection" Value="Descending"><Setter TargetName="SortArrow" Property="Visibility" Value="Visible" /><Trigger.ExitActions><StopStoryboard BeginStoryboardName="StoryboardDescendingBeginStoryboard" /></Trigger.ExitActions><Trigger.EnterActions><BeginStoryboard x:Name="StoryboardDescendingBeginStoryboard" Storyboard="{StaticResource StoryboardDescending}" /></Trigger.EnterActions></Trigger></ControlTemplate.Triggers></ControlTemplate></Setter.Value></Setter></Style><!--Style and template for the DataGridColumnHeadersPresenter.--><Style TargetType="{x:Type DataGridColumnHeadersPresenter}" BasedOn="{StaticResource ControlBasicStyle}"><Setter Property="Template"><Setter.Value><ControlTemplate TargetType="{x:Type DataGridColumnHeadersPresenter}"><Grid><DataGridColumnHeader x:Name="PART_FillerColumnHeader"IsHitTestVisible="False" /><ItemsPresenter /></Grid></ControlTemplate></Setter.Value></Setter></Style></ResourceDictionary>

二、使用 Styles.DataGrid.xaml  代码如下。

<WrapPanel Margin="0,10"><DataGrid AutoGenerateColumns="False" HeadersVisibility="All" RowHeaderWidth="40"ItemsSource="{Binding UserCollection,RelativeSource={RelativeSource AncestorType=local:MainView}}"Margin="0,10"><DataGrid.RowHeaderTemplate><DataTemplate><CheckBox IsChecked="{Binding IsSelected,RelativeSource={RelativeSource AncestorType=DataGridRow}}"/></DataTemplate></DataGrid.RowHeaderTemplate><DataGrid.Columns><DataGridTextColumn Header="Date" Binding="{Binding Date}" IsReadOnly="True"/><DataGridTextColumn Header="Name" Binding="{Binding Name}" IsReadOnly="True"/><DataGridTextColumn Header="Address" Binding="{Binding Address}" IsReadOnly="True"/></DataGrid.Columns></DataGrid></WrapPanel><WrapPanel Margin="0,10"><DataGrid AutoGenerateColumns="False" ItemsSource="{Binding UserCollection,RelativeSource={RelativeSource AncestorType=local:MainView}}"Margin="0,10"><DataGrid.Columns><DataGridTemplateColumn CanUserResize="False"><DataGridTemplateColumn.HeaderTemplate><DataTemplate><CheckBox IsChecked="{Binding RelativeSource={RelativeSource Mode=FindAncestor, AncestorType=local:MainView}, Path=AllSelected}" /></DataTemplate></DataGridTemplateColumn.HeaderTemplate><DataGridTemplateColumn.CellTemplate><DataTemplate><CheckBox IsChecked="{Binding IsChecked}"/></DataTemplate></DataGridTemplateColumn.CellTemplate></DataGridTemplateColumn><DataGridTextColumn Header="Date" Binding="{Binding Date}" IsReadOnly="True"/><DataGridTextColumn Header="Name" Binding="{Binding Name}" IsReadOnly="True"/><DataGridTextColumn Header="Address" Binding="{Binding Address}" IsReadOnly="True"/></DataGrid.Columns></DataGrid></WrapPanel>

02


效果预览

鸣谢素材提供者element

源码地址如下

Github:https://github.com/WPFDevelopersOrg

Gitee:https://gitee.com/WPFDevelopersOrg

https://gitee.com/WPFDevelopersOrg/WPFDevelopers.Minimal

https://github.com/WPFDevelopersOrg/WPFDevelopers.Minimal

WPF开发者QQ群: 340500857 

Github:https://github.com/WPFDevelopersOrg

出处:https://www.cnblogs.com/yanjinhua

版权:本作品采用「署名-非商业性使用-相同方式共享 4.0 国际」许可协议进行许可。

转载请著名作者 出处 https://github.com/WPFDevelopersOrg

31882d7e2ed2301148b26201e9d689bd.png

扫一扫关注我们,

25caaac2d407d66f9b91817e3c9802e6.gif

更多知识早知道!

1c2aa29f4c5c239908b3a3063afaddfb.gif

点击阅读原文可跳转至源代码

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/290637.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

C#页面抓取信息

//根据Url地址得到网页的html源码private string GetWebContent(string Url){string strResult"";try{HttpWebRequest request (HttpWebRequest)WebRequest.Create(Url);//声明一个HttpWebRequest请求request.Timeout 30000;//设置连接超时时间request.Headers.Set…

在 Linux 下使用 RAID(二):使用 mdadm 工具创建软件 RAID 0 (条带化)

RAID 即廉价磁盘冗余阵列&#xff0c;其高可用性和可靠性适用于大规模环境中&#xff0c;相比正常使用&#xff0c;数据更需要被保护。RAID 是一些磁盘的集合&#xff0c;是包含一个阵列的逻辑卷。驱动器可以组合起来成为一个阵列或称为&#xff08;组的&#xff09;集合。 创建…

struts2批量删除

2019独角兽企业重金招聘Python工程师标准>>> 2012-10-27 12:48 997人阅读 评论(0) 收藏 举报 逻辑代码 [java] view plain copy package com.stu2; import java.util.ArrayList; import java.util.List; import java.sql.*; import com.s…

电子商务应用课程知识整理 第六章-数据挖掘

文章目录一、概述二、关联分析概念&#xff1a;关联分析步骤&#xff1a;用于寻找频繁项集的算法算法一&#xff1a;蛮力法算法二&#xff1a;Apriopri算法&#xff08;先验算法&#xff09;三、分类与预测k近邻算法&#xff08;kNN&#xff09;四、聚类分析k均值算法&#xff…

.NET Core 返回结果统一封装

本文使用.NET Core Webapi演示&#xff01;一:新建.NetCore webapi项目为了方便开发,简化代码,也为了与前端方便对接,需要对接口服务返回结果进行统一处理。二:定义返回结果结构我们需要定义一个统一返回结果泛型类ApiResultpublic class ApiResult<T>{/// <summary&g…

linux之nm命令

1、nm命令介绍 nm命令很好记&#xff0c;当时看到大神在我的电脑面前在open ssl编译的.a文件里面过滤SHA函数&#xff0c;nm你就这样记&#xff0c;nm 尼玛, 哈哈。我们可以通过nm命令查看后缀out文件和后缀a文件里面的函数和部分属性。比如我们过滤SHA函数&#xff0c;命令如下…

.NET的两种部署模式,了解一下

前言以往部署程序一直是习惯性先安装运行时环境&#xff0c;然后再将发布打包好的程序运行起来&#xff1b;但当多个程序依赖不同版本框架平台时&#xff0c;如果部署在同一台机器上&#xff0c;那就需要在同一台机器上安装多个版本的运行时&#xff0c;总感觉有点不太方便&…

CSS3弹性伸缩布局(一)——box布局

CSS3弹性伸缩布局简介 2009年&#xff0c;W3C提出了一种崭新的方案----Flex布局&#xff08;即弹性伸缩布局&#xff09;&#xff0c;它可以简便、完整、响应式地实现各种页面布局&#xff0c;包括一直让人很头疼的垂直水平居中也变得很简单地就迎刃而解了。但是这个布局方式还…

Avalonia跨平台入门第十五篇之ListBox聊天窗口

在前面分享的几篇中咱已经玩耍了Popup、ListBox多选、Grid动态分、RadioButton模板、控件的拖放效果、控件的置顶和置底、控件的锁定、自定义Window样式、动画效果、Expander控件、ListBox折叠列表;今天趁着大周末的时间接着去摸索基于ListBox的聊天窗口的效果,最终实现的效果如…

《Unity着色器和屏幕特效开发秘笈(原书第2版)》一2.9 打包和混合纹理

本节书摘来自华章出版社《Unity着色器和屏幕特效开发秘笈&#xff08;原书第2版&#xff09;》一书中的第2章&#xff0c;第2.9节&#xff0c;作者 [英]艾伦朱科尼&#xff08;Alan Zucconi&#xff09; [美]肯尼斯拉默斯&#xff08;Kenneth Lammers&#xff09;&#xff0c;更…

云计算及应用课程知识整理

文章目录一、云计算云计算概念云计算的服务类型云计算技术体系结构的层次及其功能为什么云计算成本低&#xff1f;二、GFS分布式的文件系统设计需要考虑哪些问题&#xff1f;GFS架构GFS容错机制三、分布式数据处理MapReducemapReduce概念MapReduce适合什么类型数据&#xff1f;…

Android loading进度条使用简单总结

在这里&#xff0c;总结一下loading进度条的使用简单总结一下。 一、说起进度条&#xff0c;必须说说条形进度条&#xff0c;经常都会使用到嘛&#xff0c;特别是下载文件进度等等&#xff0c;还有像腾讯QQ安装进度条一样&#xff0c;有个进度总给人良好的用户体验。 先来找图看…

sublime php语法检查

安装sublimelinter 安装sublimelinter-php 设置sublimelinter 进入SublimeLinter文件夹改动 SublimeLinter.sublime-settings文件 设置php文件夹

lv13 环境搭建SD卡启动

一、制作SD卡启动盘 1.1 方法1&#xff1a;在Linux下制作 一、准备好烧录脚本 cd ~/fs4412 ​ unzip sdfuse_q.zip ​ cd sdfuse_q ​ chmod x *.sh 二、将SD卡插入USB读卡器&#xff0c;并连接到虚拟机 或者 一般识别的sd卡会在dev目录下显示sdb 三、烧录 cp ../u-boot-f…

如何使用c#编写单片机程序

因为个人喜爱想研究单片机&#xff0c;但是不太会c&#xff0c;然后再找资料研究有没有其他的方法发现国外的c# nanoframework 框架可以编写单片机程序&#xff0c;本文我将会用自己踩过的坑来总结一些c#编写单片机的一些经验&#xff0c;希望帮到热爱c#的xd 首先第一步我们需要…

机器学习与数据挖掘——第二章 数据与数据预处理

一、关于数据 什么是数据&#xff1f; 数据是数据对象的集合及其属性 属性的类型 标称标度 nominal scale 标称属性的值是一些符号或实物的名称&#xff0c;每个值代表某种类别、编码或状态&#xff0c;所以标称属性又被看做是分类型的属性&#xff08;categorical&#xff…

《 线性代数及其应用 (原书第4版)》——1.2 行化简与阶梯形矩阵

本节书摘来自华章出版社《 线性代数及其应用 &#xff08;原书第4版&#xff09;》一书中的第1章&#xff0c;第1.2节&#xff0c;作者:&#xff08;美&#xff09;戴维C. 雷&#xff08;David C. Lay&#xff09;马里兰大学帕克学院 著刘深泉 张万芹 陈玉珍 包乐娥 陆 博 译&a…

c#使用FluentFtp实现一行代码实现ftp上传下载等

一:简介FluentFTP 是一个完全托管的 .NET 和 .NET Standard 的 FTP 和 FTPS 库&#xff0c;针对速度进行了优化。它提供了广泛的 FTP 命令、文件上传/下载、SSL/TLS 连接、自动目录列表解析、文件哈希/校验和、文件权限/CHMOD、FTP 代理、FXP 传输、UTF-8 支持、异步/等待支持、…

软件体系结构知识点整理

包括软件体系结构风格、uml、软件质量属性、面向对象设计原则以及设计模式 pdf及goodnote版本

《T-SQL性能调优秘笈——基于SQL Server 2012 窗口函数》——1.2 使用窗口函数的解决方案简介...

本节书摘来自异步社区出版社《T-SQL性能调优秘笈——基于SQL Server 2012 窗口函数》一书中的第1章&#xff0c;第1.2节&#xff0c;作者&#xff1a; 【美】Itzik Ben-Gan&#xff0c;更多章节内容可以访问云栖社区“异步社区”公众号查看。 1.2 使用窗口函数的解决方案简介 …