Hi, I want to change my GridViewCell FocusBrush, I try this but don't work:
<Style TargetType="{x:Type telerik:GridViewCell}" BasedOn="{StaticResource GridViewCellStyle}">
<Setter Property="materialControls:MaterialAssist.PressedBrush" Value="{StaticResource BaseColor}"/>
<Setter Property="materialControls:MaterialAssist.FocusBrush" Value="{StaticResource BaseColor}"/>
<Setter Property="materialControls:MaterialAssist.MouseOverBrush" Value="{StaticResource BaseColor}"/>
</Style>
I want to change Line's color bottom of cell
5 Answers, 1 is accepted
Hello Mahdi,
Thank you for the provided picture.
You can utilize the CurrentBorderBrush property of the GridViewCell in order to achieve what you are going for. Here is what I have in mind:
<Style TargetType="telerik:GridViewCell" BasedOn="{StaticResource GridViewCellStyle}">
<Setter Property="CurrentBorderBrush" Value="Red"/>
</Style>
I hope you find this helpful.
Regards,
Vladimir Stoyanov
Progress Telerik
Hello Vladimir Stoyanov,
It was very easy, thanks a lot
excuse me, how can I change GridViewGroupPanel background color and GridView ScrollBar Color?
It was very easy, thanks a lot
excuse me, how can I change GridViewGroupPanel background color and GridView ScrollBar Color?
Hello Mahdi,
Please, check out the following articles for more information on the matter:
- GroupPanelForeground and GroupPanelBackground
Hope this helps.
Regards,
Vladimir Stoyanov
Progress Telerik
Hello Vladimir Stoyanov,
Thanks a lot.