我创建了一个 ressourceDictionnary 来创建一个 templateButton。我希望能够在使用此模板时更改 png 图像,我想我需要使用 ContentPresenter,但我不知道为什么。
这是我的 RessourceDictionnary :
<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">
<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>
因此,当我使用此 Button 模板时,我希望能够将其他 png 图像传递给它们以显示。例如,我想用 MyPicture.png 替换 xRtDiva_XWPF_TBR_PREMIER.PNG_IMAGES.png。
这是怎么做的?使用 contentPresenter ?
谢谢 :)