ここでは、グリッド行に白とグレーの交互の色を付けたいと思います。私は何度も試してみましたが、グリッドのスタイリングを行うことはできません。コードはこちら
<Style TargetType="{x:Type wpftoolkit:DataGrid}">
<Setter Property="Margin" Value="0" />
<Setter Property="BorderBrush" Value="#A6A6A6" />
<Setter Property="BorderThickness" Value="0,1,0,0"/>
<Setter Property="Background" Value="{StaticResource GridBgBrush}" />
<Setter Property="RowBackground" Value="White" />
<Setter Property="AlternatingRowBackground" Value="#FFF3F6FA" />
<Setter Property="GridLinesVisibility" Value="Horizontal" />
<Setter Property="HorizontalGridLinesBrush" Value="Transparent" />
<Setter Property="RowHeaderWidth" Value="0" />
</Style>
ここで StaticResource GridBgBrush は、このファイルで以前に次のように定義します
plzは適切な解決策を提供します。事前に感謝します。