我有按钮样式。该样式包含 Button 的 ControlTemplate。ControlTemplate 包含一个名为“ImgButton”的图像。
我想将此样式作为其他按钮的基本样式,并希望覆盖不同按钮的图像控件的“源”属性。
有任何想法吗?
我有按钮样式。该样式包含 Button 的 ControlTemplate。ControlTemplate 包含一个名为“ImgButton”的图像。
我想将此样式作为其他按钮的基本样式,并希望覆盖不同按钮的图像控件的“源”属性。
有任何想法吗?
您可以创建附加行为,该行为将提供一个属性来分配 Source。您应该使用 TemplatedParent 作为 RelativeSource 将您的图像绑定到模板中的此属性。在派生样式中,您可以简单地使用 Setter(s) 来指定不同的 Source。
附行为:
public static class ImageSourceBehavior
{
public static readonly DependencyProperty SourceProperty = DependencyProperty.RegisterAttached(
"Source", typeof(ImageSource), typeof(ImageSourceBehavior),
new FrameworkPropertyMetadata(null));
public static ImageSource GetSource(DependencyObject dependencyObject)
{
return (ImageSource)dependencyObject.GetValue(SourceProperty);
}
public static void SetSource(DependencyObject dependencyObject, ImageSource value)
{
dependencyObject.SetValue(SourceProperty, value);
}
}
款式:
<Style x:Key="Style1"
TargetType="Button">
<Setter Property="local:ImageSourceBehavior.Source"
Value="..."/>
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="Button">
<Image Source="{Binding Path=(local:ImageSourceBehavior.Source),RelativeSource={RelativeSource TemplatedParent}}"/>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
<Style x:Key="Style2"
BasedOn="{StaticResource Style1}"
TargetType="Button">
<Setter Property="local:ImageSourceBehavior.Source"
Value="..."/>
</Style>