<Style x:Key="StepCommentRowStyle" TargetType="DataGridRow">
<Setter Property="Background" Value="{StaticResource YellowGradientPrimaryColor}" />
<Setter Property="Height" Value="25" />
> <Setter Property="Template">
> <Setter.Value>
> <ControlTemplate TargetType="DataGridRow">
> <Grid Background="{TemplateBinding Background}">
> <Image
> Width="20"
> Height="20"
> Source="{StaticResource ICON_COMMENT_20x20}" />
> <ContentPresenter HorizontalAlignment="Center" VerticalAlignment="Center" />
> </Grid>
> </ControlTemplate>
> </Setter.Value>
> </Setter>
<Style.Triggers>
<Trigger Property="IsSelected" Value="True">
<Setter Property="Background" Value="Blue" />
</Trigger>
</Style.Triggers>
</Style>
<Style x:Key="StepCommentRowStyle" TargetType="DataGridRow">
<Setter Property="Background" Value="{StaticResource YellowGradientPrimaryColor}" />
<Setter Property="Height" Value="25" />
> <Setter Property="Template">
> <Setter.Value>
> <ControlTemplate TargetType="DataGridRow">
> <Grid Background="{TemplateBinding Background}">
> <Image
> Width="20"
> Height="20"
> Source="{StaticResource ICON_COMMENT_20x20}" />
> <ContentPresenter HorizontalAlignment="Center" VerticalAlignment="Center" />
> </Grid>
> </ControlTemplate>
> </Setter.Value>
> </Setter>
<Style.Triggers>
<Trigger Property="IsSelected" Value="True">
<Setter Property="Background" Value="Blue" />
</Trigger>
</Style.Triggers>
</Style>