试图更改ButtonRevealStyle(静态资源)

时间:2017-12-27 13:00:13

标签: windows xaml button uwp

我需要对按钮的样式进行一些更改,问题是,因为按钮正在使用{"success":false,"message":"Authentication token missing"}我无法更改任何内容。

这是我尝试使用的代码:

ButtonRevealStyle

有没有办法更改ButtonRevealStyle?

1 个答案:

答案 0 :(得分:1)

您可以使用BasedOn继承ButtonRevealStyle:

<Button x:Name="Button1">
 <Button.Style>
  <Style TargetType="Button" BasedOn="{StaticResource ButtonRevealStyle}">
      <Setter Property="Background" Value="Yellow"/>
       ...
  </Style>
 </Button.Style>
<Button.Resources>
    <SolidColorBrush x:Key="ButtonBorderBrushPointerOver" Color="Transparent" />
</Button.Resources>