我正在学习WPF中的Mahapps.Metro。我想为Mahapps.Metro的NumericUpDown Control设置全局样式。
我在App.xaml中添加了这个
<Style TargetType="{x:Type controls:NumericUpDown}" BasedOn="{StaticResource {x:Type controls:NumericUpDown}}">
<Setter Property="BorderThickness" Value="3"/>
<Setter Property="BorderBrush" Value="Red" /></Style>
但它没有用。
如果我以个人形式设置,那么它正在运作。像:
<Style TargetType="controls:NumericUpDown">
<Setter Property="BorderBrush" Value="Red" /> </Style>