WPF在控件上设置DataTemplate和ControlTemplate不起作用

时间:2013-06-27 12:16:06

标签: wpf xaml

我显然在这里遗漏了一些非常基本的东西。我发现了类似的问题,但没有一个答案让我能够理解我做错了什么。

当我设置ControlTemplate时,我的DataTemplate没有被选中。

我创建了一个非常简单的问题示例:

<Window x:Class="WpfTesterProject.Window1"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:local="clr-namespace:WpfTesterProject"
        Title="Window1" Height="300" Width="300">

    <Window.Resources>
        <DataTemplate DataType="{x:Type local:Person}">
            <StackPanel>
                <TextBlock Text="{Binding FirstName}" />
                <TextBlock Text="{Binding LastName}" />
            </StackPanel>
        </DataTemplate>
    </Window.Resources>

    <ContentControl Content="{Binding Content}">
        <ContentControl.Template>
            <ControlTemplate>
                <Border BorderBrush="Blue" BorderThickness="2">
                    <ContentPresenter />
                </Border>
            </ControlTemplate>
        </ContentControl.Template>
    </ContentControl>
</Window>

我想要做的是选择在运行时加载的用户定义数据模板,但是我想要,例如,无论用户模板是什么,或者即使他没有指定任何内容,也要包装边框中的每个元素模板。

根据我从类似问题中读到的内容,我必须在ControlTemplate中使用<ContentPresenter />,但结果与删除它时相同 - 只显示边框。

1 个答案:

答案 0 :(得分:3)

我转载了你的申请。似乎问题出在TargetType

ControlTemplate属性中
<ContentControl Content="{Binding}">
    <ContentControl.Template>
        <ControlTemplate TargetType="ContentControl">
            <Border BorderBrush="Blue" BorderThickness="2">
                <ContentPresenter />
            </Border>
        </ControlTemplate>
    </ContentControl.Template>
</ContentControl>