当前位置:网站首页>WPF DataGrid 两行一个颜色
WPF DataGrid 两行一个颜色
2022-07-19 16:50:00 【小慧哥】
Datagrid 行样式
样式
<Style TargetType="DataGridRow">
<Style.Triggers>
<!--隔行换色-->
<Trigger Property="AlternationIndex" Value="2" >
<Setter Property="Background" Value="#f4f9ff" />
</Trigger>
<Trigger Property="AlternationIndex" Value="3" >
<Setter Property="Background" Value="#f4f9ff" />
</Trigger>
<Trigger Property="IsSelected" Value="True">
<Setter Property="Background" Value="#ffeedb"/>
</Trigger>
</Style.Triggers>
</Style>
设置DataGrid属性
AlternationCount="4"
边栏推荐
- 芯片低功耗睡眠模式下与看门狗的使用
- %d,%s,%c,%x
- 多线程FTP项目(4)—— Mysql数据库 + FTP
- Large screen: the display adaptation and font of the page on different scale screens change with the screen change (the font changes adaptively with the screen resolution)
- 设置数据库事务隔离级别
- 批量下载数据——以TRMM数据为例
- What happens to cross domain? Solutions to cross domain problems
- 信通院《分布式存储发展白皮书(2022年)》发布:华云数据参与编制 为产业发展提速换挡
- mysql远程登录
- What is enterprise firewall and what is strategy?
猜你喜欢
Is there a shortcut to the success of the test post? I tell you, the only shortcut is not to take detours
MATLAB实现LMDI分解方法(含零值处理)
Arcgis/arcpy convert floating-point grid to integer grid
Map and set
批量下载数据——以TRMM数据为例
MATLAB realizes the wind speed conversion of tropical cyclone in different wind periods
ArcGIS自定义坐标系统(以Albers为例)
mysql远程登录
php7.4升级php8.0后重启系统网站访问异常问题
How to solve the user name enumeration vulnerability
随机推荐
MLX90640 红外热成像仪测温模块简要介绍说明
Interviewer: what are the three cache update strategies of redis & MySQL?
地学学术资源III(区划数据)
接口调试还能这么玩?
Remember to crawl the search engine thumbnail once and save it locally
MATLAB快速将影像的二维坐标转换为经纬度坐标
力扣解法汇总731-我的日程安排表 II
ES6语法扩展与新特性
go-fastDFS 分布式文件系统搭建(实现梳理)
shell跑数命令
go语言环境搭建和样例
Kyligence李栋:从数据湖到指标中台,提升数据分析ROI
百度贴吧爬虫获取网页
Leetcode 206.反转链表I
JVM 上数据处理语言的竞争:Kotlin, Scala 和 SPL
MSWEP数据nc格式转tif格式
传统 token 方式和 jwt 在认证方面的差异
【问题解决】微信开发者工具引入组件时报错Uncaught TypeError: Cannot read property ‘addListener‘ of undefined
Go语言——测试与性能
matlab获取原数组在排序后数组中的位置