Hello!
I have a next XAML in my Dictionary:
So, i need set background for all row about Mouse Over. How to me it to make?
I have a next XAML in my Dictionary:
<
Style
TargetType
=
"{x:Type telerik:GridViewRow}"
>
<
Style.Triggers
>
<
Trigger
Property
=
"IsSelected"
Value
=
"True"
>
<
Setter
Property
=
"Background"
Value
=
"{StaticResource SelectedBrush}"
/>
<
Setter
Property
=
"Foreground"
Value
=
"{StaticResource SelectedForeground}"
/>
</
Trigger
>
<
Trigger
Property
=
"IsMouseOver"
Value
=
"True"
>
<
Setter
Property
=
"Background"
Value
=
"{StaticResource SelectedBrushLight}"
/>
<
Setter
Property
=
"Foreground"
Value
=
"{StaticResource SelectedForegroundLight}"
/>
</
Trigger
>
</
Style.Triggers
>
</
Style
>
<
Style
TargetType
=
"{x:Type telerik:GridViewCell}"
>
<
Style.Triggers
>
<
Trigger
Property
=
"IsSelected"
Value
=
"True"
>
<
Setter
Property
=
"Background"
Value
=
"{StaticResource SelectedBrush}"
/>
<
Setter
Property
=
"Foreground"
Value
=
"{StaticResource SelectedForeground}"
/>
</
Trigger
>
<
Trigger
Property
=
"IsMouseOver"
Value
=
"True"
>
<
Setter
Property
=
"Background"
Value
=
"{StaticResource SelectedBrushLight}"
/>
<
Setter
Property
=
"Foreground"
Value
=
"{StaticResource SelectedForegroundLight}"
/>
</
Trigger
>
</
Style.Triggers
>
</
Style
>
So, i need set background for all row about Mouse Over. How to me it to make?