wpftoolkit
wpftoolkit copied to clipboard
How to style UpDown controls spinners ?
I've got this so far but it seems like the spinner colors don't change and I can't find what else I could style.
<Style TargetType="{x:Type WpfToolkit:ButtonSpinner}" BasedOn="{StaticResource {x:Type WpfToolkit:ButtonSpinner}}">
<Style.Setters>
<Setter Property="Background" Value="{StaticResource MaterialDesignPaper}"/>
<Setter Property="Foreground" Value="{StaticResource MaterialDesignDarkForeground}"/>
</Style.Setters>
</Style>
<Style TargetType="{x:Type WpfToolkit:IntegerUpDown}" BasedOn="{StaticResource {x:Type WpfToolkit:IntegerUpDown}}">
<Style.Setters>
<Setter Property="Background" Value="{StaticResource MaterialDesignPaper}"/>
<Setter Property="Foreground" Value="{StaticResource MaterialDesignDarkForeground}"/>
<Setter Property="BorderBrush" Value="{StaticResource MaterialDesignTextFieldBoxBackground}"/>
</Style.Setters>
</Style>