Thank you,
Scott
Comments: ** Comment from web user: BoucherS **
Hi,
You are at the right place : in the triggers of the style for PropertyItemBase. Doing the following modifications in
-Xceed.Wpf.Toolkit/PropertyGrid/Themes/Aero2.NormalColor.xaml (in Windows 8)
-Xceed,Wpf.Toolkit/PropertyGrid/Themes/Generic.xaml (other Windows)
modify the Background for the PART_Name of the PropertyItemBase as expected :
```
<Trigger Property="IsMouseOver"
Value="True">
<Setter TargetName="PART_Name"
Property="Background"
Value="Green" />
</Trigger>
<Trigger Property="IsSelected"
Value="True">
<Setter TargetName="PART_Name"
Property="Background"
Value="Red" />
</Trigger>
```