Hi,
I'm using the NuGet package Extended WPF Toolkit (2.3)
Here is my DateTimeUpDown under Windows 7 :

And the same under Windows 8 :

My first attempt was to include the PresentationFramework.Aero.dll as an embedded resource and add it to the ResourceDictionary in my App.xaml
```
<ResourceDictionary Source="/PresentationFramework.Aero;component/themes/Aero.NormalColor.xaml"/>
```
but the spinner still have this gray background.
Any idea ?
Thanks !
Comments: ** Comment from web user: BoucherS **
I'm using the NuGet package Extended WPF Toolkit (2.3)
Here is my DateTimeUpDown under Windows 7 :

And the same under Windows 8 :

My first attempt was to include the PresentationFramework.Aero.dll as an embedded resource and add it to the ResourceDictionary in my App.xaml
```
<ResourceDictionary Source="/PresentationFramework.Aero;component/themes/Aero.NormalColor.xaml"/>
```
but the spinner still have this gray background.
Any idea ?
Thanks !
Comments: ** Comment from web user: BoucherS **
Hi,
To change the Background color of the ButtonSpinners, try this :
```
<xctk:DateTimeUpDown Value="2015/2/20">
<xctk:DateTimeUpDown.Resources>
<Style x:Key="{ComponentResourceKey TypeInTargetAssembly={x:Type themes:ResourceKeys}, ResourceId=SpinnerButtonStyleKey}"
TargetType="RepeatButton">
<Setter Property="Background"
Value="Red" />
</Style>
</xctk:DateTimeUpDown.Resources>
</xctk:DateTimeUpDown>
```
where "themes" points to :
xmlns:themes="clr-namespace:Xceed.Wpf.Toolkit.Themes;assembly=Xceed.Wpf.Toolkit"