In Development
Last Updated: 11 Jun 2024 08:35 by ADMIN
Stenly
Created on: 27 May 2024 07:37
Category: PropertyGrid
Type: Bug Report
0
PropertyGrid: The labels of the properties are hard to read when the Expression_Dark theme is applied and an item is selected

When the Expression_Dark theme is applied to the RadPropertyGrid, selecting an item is hard to read, as the item's foreground is white and the selection state is in a similar color.

To work this around, use the following Style:

<Style TargetType="telerik:PropertyGridField">
    <Style.Triggers>
        <Trigger Property="IsSelected" Value="True">
            <Setter Property="Foreground" Value="Black"/>
        </Trigger>
    </Style.Triggers>
</Style>

 

0 comments