我创建了一个 ResourceDictionary 以便ControlTemplate
为Button
.
这是我的 XAML 代码
<ControlTemplate TargetType="{x:Type Button}" x:Key="BoutonRessources">
<Button Width="32" Margin="0,0,7,0" Name="tbrClear" ToolTip="Clear" VerticalAlignment="Center" BorderThickness="0" HorizontalAlignment="Center" Background="Transparent" HorizontalContentAlignment="Center">
<Button.Content>
<Border>
<Image Source="xRtDiva_XWPF_TBR_PREMIER.PNG_IMAGES.png" Height="18"/>
<Border.Style>
<Style TargetType="{x:Type Border}">
<Setter Property="Background" Value="Transparent" />
<Style.Triggers>
<Trigger Property="IsMouseOver" Value="True">
<Setter Property="Background">
<Setter.Value>
<ImageBrush ImageSource="BoutonToolbarSelected.png"/>
</Setter.Value>
</Setter>
<Setter Property="Height" Value="22"/>
<Setter Property="Width" Value="32"/>
</Trigger>
</Style.Triggers>
</Style>
</Border.Style>
</Border>
</Button.Content>
<Button.Style>
<Style TargetType="{x:Type Button}" >
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type Button}" >
<ContentPresenter />
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</Button.Style>
</Button>
</ControlTemplate>
当我在我的 XAML 代码上使用 y 模板时:
<Button Template="{StaticResource BoutonRessources}">
我想给出一个参数,以便为这个模板“BoutonRessources”设置图片。
我试图像这样修改我的代码:
<Button Template="{StaticResource BoutonRessources}">
<Button.Content>
<Border>
<Image Source="myNewPicture.png" Height="18"/>
</Border>
</Button.Content>
</Button>
请问如何个性化我的按钮模板的图片?
非常感谢 :)