Wpf为Mahapps.Metro NumericUpDown控件设置全局样式

时间:2017-12-25 10:35:47

标签: c# wpf xaml mahapps.metro

我正在学习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>

0 个答案:

没有答案