我正在为App.xaml中的按钮创建样式。如何在样式中添加边框?然后我如何在MainWindow.xaml中使用样式?
我不知道该怎么做。我不想为了边框而把它放在一个单独的样式中。
in App.xaml
<Style x:Key="BorderedButton" TargetType="Button">
<Setter Property="BorderBrush" Value="HotPink"/>
<Setter Property="BorderThickness" Value="2"/>
</Style>
和视图
<Button Style="{StaticResource BorderedButton}"/>