我有以下按钮XAML
<Button Name="btnLogoff" DockPanel.Dock="Left" Click="btnToolbar_Click" CommandParameter="LOGOFF"
Template="{DynamicResource ToolbarButton}"
Style="{StaticResource ToolbarButtonDisplay}" z:ButtonProperties.Image="..\..\Resources\Images\Logoff.GIF" Content="Logoff">
</Button>
ButtonProperties如下
public class ButtonProperties
{
public static ImageSource GetImage(DependencyObject obj)
{
return (ImageSource) obj.GetValue(ImageProperty);
}
public static void SetImage(DependencyObject obj, ImageSource value)
{
obj.SetValue(ImageProperty, value);
}
public static readonly DependencyProperty ImageProperty = DependencyProperty.RegisterAttached("Image", typeof(ImageSource), typeof(ButtonProperties), new UIPropertyMetadata((ImageSource)null));
}
哪个工作正常,给我一个模板,我可以在整个应用程序中使用具有图像和文本组件的按钮。
我想要做的是在某些后台线程方法上将样式从ToolbarButton动态更改为ToolbarButtonRed,例如通知用户事件即将发生,按钮将更改为红色样式。这两种样式都在XAML页面的资源中,但我无法弄清楚如何以编程方式更改模板。
我试过..
public DataTemplate AlarmTemplate
{
get
{
if (_alarmTemplate != null)
return _alarmTemplate;
else
return (DataTemplate)_parent.FindResource("ToolbarButton");
}
set
{
_alarmTemplate = value;
OnPropertyChanged("AlarmTemplate");
}
}
private void SetAlarmIcon(bool red)
{
if (red)
AlarmTemplate = (DataTemplate)_parent.FindResource("ToolbarButtonRed");
else
AlarmTemplate = (DataTemplate)_parent.FindResource("ToolbarButton");
}
并将XAML绑定为
但没有快乐。按钮甚至根本不显示。有什么建议吗?
更新:
下面的样式
<Style x:Key="ToolbarButtonDisplay" TargetType="Button">
<Setter Property="ContentTemplate">
<Setter.Value>
<DataTemplate>
<StackPanel Orientation="Vertical">
<Image Source="{Binding Path=(Windows:ButtonProperties.Image), RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type Button}}}" Margin="0,2,0,0" Width="32"/>
<TextBlock FontSize="9" FontWeight="Normal" FontFamily="Arial" Foreground="White" HorizontalAlignment="Center" Margin="2,2,2,2">
<ContentPresenter Content="{Binding Path=Content, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type Button}}}"></ContentPresenter>
</TextBlock>
</StackPanel>
</DataTemplate>
</Setter.Value>
</Setter>
<Style.Triggers>
<DataTrigger Binding="{Binding Path=IsEnabled}" Value="True">
<Setter Property="Template" Value="{StaticResource ToolbarButtonRed}"/>
</DataTrigger>
</Style.Triggers>
</Style>
最终更新 - 我得到了一个触发器,如下所示
<Style.Triggers>
<DataTrigger Binding="{Binding Path=DisplayToolbar}" Value="True">
<Setter Property="Template" Value="{DynamicResource ToolbarButtonRed}"/>
</DataTrigger>
</Style.Triggers>
只需在datacontext(DisplayToolbar)上使用任意属性,因为我不知道如何针对按钮执行此操作。为了解释,我在页面上有大约30个按钮,它们都使用相同的样式,因此触发相同,因此上面的代码将所有30个设置为红色。我需要一种方法让每个按钮来训练IT和IT ALONE是否应该是红色的,所以我正在考虑设置按钮控件的某些属性,如果有一个我可以使用,并让数据触发器查看按钮属性,而不是datacontexts。绑定到按钮自己的属性而不是datacontext的语法是什么?
答案 0 :(得分:0)
它应该像将Style属性设置为FindResource的值一样简单。
Dispatcher.Invoke(() => { btnLogoff.Style = (Style)FindResource("ToolbarButtonRed"); });
此处正在使用调度程序调用,因为您无法从后台线程设置控件的依赖项属性。
根据以下评论,控制模板可以完全相同的方式设置。
Dispatcher.Invoke(() => { btnLogoff.Template = (ControlTemplate)FindResource("ToolbarButtonRed"); });