我如何改变一个按钮的整个风格,从代码背后的实时
本文关键字:风格 实时 背后 代码 一个 何改变 改变 按钮 | 更新日期: 2023-09-27 18:09:35
我有一个闪烁的按钮。
我想改变整个按钮的样式从一个资源字典,当它闪烁。
我想应该是这样的:
DesktopWindow.AlertButton.Style = (Style)DesktopWindow.Resources["GreenAlertButtonStyle"];
但这不起作用。我该怎么做呢?我不能简单地改变背景颜色(尽管这是我真正想做的),因为我想保留触发器。当我现在改变按钮的背景时,鼠标悬停触发器停止工作....
按钮:
<Style TargetType="Button" x:Key="BaseAlertButtonStyle">
<Setter Property="ToolTip" Value="Show Alert List"/>
<Setter Property="Effect" Value="{DynamicResource dropShadow}" />
<Setter Property="Background" Value="{DynamicResource AlertButtonBackground}" />
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="Button">
<Grid HorizontalAlignment="Stretch"
VerticalAlignment="Stretch">
<Border CornerRadius="5" x:Name="ButtonBorder" Margin="0,0,0,0"
VerticalAlignment="Stretch" BorderThickness="0"
BorderBrush="#ffffff" Padding="0"
Background="{TemplateBinding Background}"
HorizontalAlignment="Stretch">
<Image x:Name="alertImage">
<Image.Source>
<BitmapImage UriSource="/resources/alertIcon.png" />
</Image.Source>
</Image>
</Border>
</Grid>
<ControlTemplate.Triggers>
<Trigger Property="IsMouseOver" Value="true">
<Setter Property="Background" Value="{DynamicResource ButtonRolloverBackground}"/>
</Trigger>
</ControlTemplate.Triggers>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
我不想听到关于做这个问题的搜索....
尝试:
DesktopWindow.AlertButton.Style = FindResource("GreenAlertButtonStyle") as Style;
明确设置背景后,必须清除BackgroundProperty,然后设置新样式。
button1.ClearValue(BackgroundProperty);