在Microsoft Expression Blend中,我有以下按钮模板:
<ControlTemplate x:Key="ImageBlueButton" TargetType="{x:Type Button}">
<Grid x:Name="MainGrid" Width="75" Height="50">
<Grid.RowDefinitions>
<RowDefinition Height="0.5*"/>
<RowDefinition Height="0.5*"/>
</Grid.RowDefinitions>
<ContentPresenter x:Name="TextContent" HorizontalAlignment="Center" VerticalAlignment="Center" Margin="0" Grid.Row="1" d:LayoutOverrides="Width, Height"/>
<Image x:Name="ButtonImage" Margin="0" Grid.RowSpan="1" HorizontalAlignment="Center" VerticalAlignment="Center" Source="{TemplateBinding Content}"/>
</Grid>
</ControlTemplate>
我手动编辑XAML以将Source = {TemplateBinding Content}属性添加到Image标记。我的问题是,如何将图像分配给在Blend中使用此模板的按钮对象?
在Blend中,我可以看到包含Content字段的Common Properties窗口,但更改它只会更新按钮上的文本。我猜我需要使用自定义表达式来同时设置文本内容和图像内容吗?