wpf - 从 ControlTemplate 中的样式 DataTrigger 进行模板绑定(bind)

标签 wpf datatrigger templatebinding control-template

在下面的 XAML 中,我使用带边框的矩形作为 ToggleButton 的模板。 我希望 BorderBrush 具有不同的颜色以反射(reflect) ToggleButton.IsChecked 的变化值。 不幸的是,我在这里尝试在 DataTrigger 中使用 TemplateBinding 不起作用。我需要做什么?

<StackPanel Orientation="Horizontal">
    <StackPanel.Resources>
        <ControlTemplate x:Key="ButtonAsSwatchTemplate">
            <Border BorderThickness="1">
                <Border.Style>
                    <Style>
                        <Setter Property="BorderBrush" Value="Gainsboro" /> 
                        <Style.Triggers>
                            <!-- TemplateBinding doesn't work.-->
                            <DataTrigger                              
                                 Binding={TemplateBinding Property=IsChecked}    
                                 Value="True">
                                <Setter Property="BorderBrush" Value="Black" />
                            </DataTrigger>
                        </Style.Triggers>
                    </Style>
                </Border.Style>
                <Rectangle Fill="{TemplateBinding Property=Background}"
                           Width="15" Height="15" />
            </Border>
        </ControlTemplate>
    </StackPanel.Resources>
    <ToggleButton Template="{StaticResource ButtonAsSwatchTemplate}"
                  HorizontalAlignment="Center" VerticalAlignment="Center"
                  Margin="2" Background="Red" />
</StackPanel>

编辑

当我构建并重新加载设计器时,出现以下错误:

错误 1 ​​属性“Binding”不支持“TemplateBindingExpression”类型的值。

解决方案

<StackPanel Orientation="Horizontal">
    <StackPanel.Resources>
        <ControlTemplate x:Key="ButtonAsSwatchTemplate">    
            <Border x:Name="SwatchBorder" BorderThickness="1">
                <Rectangle Fill="{TemplateBinding Property=Background}" Width="15" Height="15" />
            </Border>
        <ControlTemplate.Triggers>
            <Trigger Property="ToggleButton.IsChecked" Value="True">
                <Setter TargetName="SwatchBorder" Property="BorderBrush" Value="Yellow" />
            </Trigger>
        </ControlTemplate.Triggers>
            </ControlTemplate>
        </StackPanel.Resources>
    <RadioButton Template="{StaticResource ButtonAsSwatchTemplate}"
        GroupName="CropGuidesColourRadioButtonGroup"
        IsChecked="{Binding Checked}" Margin="2" Background="Red" />
    <RadioButton Template="{StaticResource ButtonAsSwatchTemplate}"
        GroupName="CropGuidesColourRadioButtonGroup" 
        IsChecked="{Binding Checked}" Margin="2" Background="Black" />
    ...
</StackPanel>

最佳答案

您可以在 ControlTemplate 中使用触发器,例如

<StackPanel Orientation="Horizontal">
    <StackPanel.Resources>
        <ControlTemplate x:Key="ButtonAsSwatchTemplate">
            <Border x:Name="myBorder" BorderBrush="Gainsboro" BorderThickness="1">
                <Rectangle Fill="{TemplateBinding Property=Background}" Width="15" Height="15" />
            </Border>
            <ControlTemplate.Triggers>
                <Trigger Property="ToggleButton.IsChecked" Value="True">
                    <Setter TargetName="myBorder" Property="BorderBrush" Value="Black" />
                </Trigger>
            </ControlTemplate.Triggers>
        </ControlTemplate>
    </StackPanel.Resources>
    <ToggleButton Template="{StaticResource ButtonAsSwatchTemplate}"
              HorizontalAlignment="Center" VerticalAlignment="Center"
              Margin="2" Background="Red" />
</StackPanel>

关于wpf - 从 ControlTemplate 中的样式 DataTrigger 进行模板绑定(bind),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6770075/

相关文章:

c# - 在绑定(bind)到集合的控件内处理元素

WPF DataTrigger 适用于图像,但不适用于路径

wpf - 数据触发器未触发

c# - WPF 触发器/绑定(bind)不起作用

c# - 在自定义控件上绑定(bind) StringFormat

wpf - 从标签中删除 WPF 验证装饰

wpf - Telerik、Infragistics、XCeed、

wpf - 在长时间运行的操作之前强制重绘

wpf - TemplateBinding 在某些情况下不起作用(使用 TranslateTransform 时)