我想在ControlTemplate中使用GeometryDrawing作为按钮图标,我希望它的Brush
属性绑定到按钮的Foreground
属性,但它是'不工作另一方面,如果我明确地设置了画笔,它就可以工作。
这是我的(非工作)代码:
<Style x:Key="SimpleButtonStyle" TargetType="{x:Type Button}">
<Setter Property="Background" Value="LightGray"/>
<Setter Property="Foreground" Value="Black"/>
<Setter Property="BorderThickness" Value="2"/>
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type Button}">
<Border x:Name="border"
BorderBrush="{TemplateBinding Foreground}"
BorderThickness="{TemplateBinding BorderThickness}"
Background="{TemplateBinding Background}"
SnapsToDevicePixels="true">
<StackPanel Orientation="Vertical">
<Image x:Name="buttonImage" Height="20" Width="20">
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<!-- line below does not work -->
<GeometryDrawing Brush="{TemplateBinding Foreground}">
<GeometryDrawing.Geometry>
<EllipseGeometry RadiusX="15" RadiusY="15"/>
</GeometryDrawing.Geometry>
</GeometryDrawing>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
<ContentPresenter x:Name="contentPresenter"/>
</StackPanel>
</Border>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
答案 0 :(得分:1)
请参阅此WPF TemplateBinding vs RelativeSource TemplatedParent - Paul Fischer的回答。特别是关于TemplateBinding的这部分:
•不适用于Freezables上的属性
如果查看GeometryDrawing,您可以看到它的继承层次结构包括Freezable:GeometryDrawing:Drawing:Animatable:Freezable:DependencyObject:DispatcherObject:Object
因此,您不能在Freezable GeometryDrawing的Brush属性上使用TemplateBinding。
您可以在Border的BorderBrush属性上使用TemplateBinding,因为Border不从Freezable继承:Border:Decorator:FrameworkElement:UIElement:Visual:DependencyObject:DispatcherObject:Object