Hi,
the background of Increment/Decrement buttons of ButtonSpinner looks different in XP and Win 7.
In Win 7 the background of the buttons is transparent and only on mouse over, some color is applied.
But in XP, the button background is always visible with xp theme and is like shown in attachment.
In XP theme also, I need the button behavior to be same as Win7.
Kindly let me know how to so this.
Comments: ** Comment from web user: BoucherS **
the background of Increment/Decrement buttons of ButtonSpinner looks different in XP and Win 7.
In Win 7 the background of the buttons is transparent and only on mouse over, some color is applied.
But in XP, the button background is always visible with xp theme and is like shown in attachment.
In XP theme also, I need the button behavior to be same as Win7.
Kindly let me know how to so this.
Comments: ** Comment from web user: BoucherS **
Hi,
You can always modify the style of the ButtonSpinners :
```
<Window.Resources>
<Style x:Key="{ComponentResourceKey TypeInTargetAssembly={x:Type themes:ResourceKeys}, ResourceId=SpinnerButtonStyleKey}"
TargetType="RepeatButton">
<Setter Property="Background"
Value="Green" />
</Style>
</Window.Resources>
```