如何使用Blend将图像绑定到按钮模板?

时间:2012-06-21 15:54:57

标签: c# wpf blend

在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窗口,但更改它只会更新按钮上的文本。我猜我需要使用自定义表达式来同时设置文本内容和图像内容吗?

1 个答案:

答案 0 :(得分:0)

看起来无法在模板(文本和图像)中设置多个内容属性。我将不得不创建自己的UserControl。此问题类似于回答here的问题。