xamDataGrid でフィルター レコードの背景色を変更しようとしています。
<SolidColorBrush x:Key="{ComponentResourceKey {x:Type igDP:XamDataGrid}, AddRowBackground}" Color="Red"/>
Infragistics フォーラムで提案されているように試しましたが、
<Style TargetType="{x:Type igDP:DataRecordPresenter}">
<Style.Triggers>
<DataTrigger Binding="{Binding RelativeSource={RelativeSource Self}, Path=IsFilterRecord}" Value="True">
<Setter Property="Background" Value="#363636" />
</DataTrigger>
</Style.Triggers>
</Style>
しかし、どちらも機能しませんでした。フィルター行はまだ白です。
何か案は?