wpf将样式属性添加到按钮默认样式

时间:2015-08-24 18:14:50

标签: c# wpf

我在我的wpf窗口中使用MahApps.Metro框架。现在,MahApps.Metro的默认按钮如下所示:

enter image description here

现在我想将样式更改为:

enter image description here

如果我想创建此按钮,我必须使用此样式属性Style="{DynamicResource SquareButtonStyle}"。但我不想在每个Button中都写这个,我想创建一个默认的按钮设计。

现在我在我的app.xaml文件中添加了以下代码:

<Application.Resources>
    <ResourceDictionary>
        <Style TargetType="Button">
            <Setter Property="Margin" Value="5"/>
        </Style>
    </ResourceDictionary>
</Application.Resources>

如果我创建一个这样的setter:

<Setter Property="Style" Value="Style="{DynamicResource SquareButtonStyle}"/>,我得到10个错误。

如何为每个按钮设置<Setter Property="Style" Value="Style="{DynamicResource SquareButtonStyle}"/>

0 个答案:

没有答案