Is it possible to change the colours of the first column in the PropertyGrid component of a CollectionEditor. I can change colours of those in the second column (red in the picture) and other items in the PropertyGrid, e.g. pink text, blue background using the following code
![Image]()
I have a global style which changes TextBlock ForeGround to white, but this means I cannot see the text in the first column - hence the need to change colours in this column.
Any help much appreciated.

<Style TargetType="{x:Type xctk:PropertyGrid}">
<Style.Resources>
<Style TargetType="TextBlock">
<Setter Property="Foreground" Value="Pink"/>
</Style>
<Style TargetType="Grid">
<Setter Property="Background" Value="Blue"/>
</Style>
<Style TargetType="Expander">
<Setter Property="Background" Value="Brown"/>
<Setter Property="Foreground" Value="Brown"/>
</Style>
</Style.Resources>
<Setter Property="Background" Value="{DynamicResource NormalBorderBrush}"/>
</Style>
Note that the Expander Brown colours are not doing anything.I have a global style which changes TextBlock ForeGround to white, but this means I cannot see the text in the first column - hence the need to change colours in this column.
Any help much appreciated.