问题很简单:如何为WPF数据网格实现条纹颜色,如下所示:



这会将每一行修改为包含灰色背景,现在我需要对此进行改进:

<Style TargetType="{x:Type DataGridCell}">
    <Setter Property="Background" Value="#aaa" />
</Style>

最佳答案

您可以为此使用DataGrid的AlternatingRowBackground属性。

关于c# - 如何为WPF DataGrid制作条纹颜色?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/9723954/

10-14 03:02