Xceed DataGrid for WPF Professional Edition 3.1 (3.1.9175.12000):
The class Xceed.Wpf.DataGrid.Cell doesn't have:
1) SelectionBackground
2) SelectionForeground
3) InactiveSelectionBackground
4) InactiveSelectionForeground
... properties as opposed to v 4.2 and 4.3 of Xceed DataGrid for WPF.
Is there an equivalent code in v 3.1 to:
<xcdg:DataGridControl>
<xcdg:DataGridControl.Resources>
<ResourceDictionary>
<Style TargetType="{x:Type xcdg:DataCell}">
<Style.Triggers>
<DataTrigger Value="True">
<DataTrigger.Binding>
<Binding RelativeSource="{RelativeSource Self}" Path="IsSelected"/>
</
DataTrigger .Binding>
<Setter Property="SelectionBackground" Value="Red"/>
</DataTrigger>
</Style.Triggers>
</Style>
</ResourceDictionary>
<xcdg:DataGridControl.Resources>
<xcdg:DataGridControl>