Now I have different colors as rowbackground depending on value in "category". but how can I use images (horizontal tiled) as background for my rows?
How I do it now:
How I do it now:
<Style x:Key="GridRowStyle" TargetType="telerik:GridViewRow" |
<Style.Triggers> |
<DataTrigger Binding="{Binding Path=category}" Value="1"> |
<Setter Property="Background" Value="#FFFF88" /> |
</DataTrigger> |
</Style.Triggers> |
</Style> |
//In grid I use: |
RowStyle="{StaticResource GridRowStyle}" |