2

我有一个自定义ContentControl,它具有固定的 XAML 布局,例如UserControl(而不是通常应用的通用模板)。

以前这个布局没有额外的标记,所以它实际上是:

<ContentControl x:Class="MyControls.CustomViewControl"
             xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
             xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
             xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
             mc:Ignorable="d" 
             d:DesignHeight="300" d:DesignWidth="300">
</ContentControl>

这工作得很好。

我现在想在内容周围加一个边框,所以我将 XAML 更改为:

<ContentControl x:Class="MyControls.CustomViewControl"
             xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
             xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
             xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
             mc:Ignorable="d" 
             d:DesignHeight="300" d:DesignWidth="300">
    <ContentControl.Template>
        <ControlTemplate>
            <Border BorderThickness="5" BorderBrush="LightGreen">
                <ContentPresenter />
            </Border>
        </ControlTemplate>
    </ContentControl.Template>
</ContentControl>

这显示了边框,但没有内容。

我尝试为 ContentPresenter 提供显式绑定:

<ContentPresenter Content="{Binding Path=Content, RelativeSource={RelativeSource Self}}"/>

但这并没有什么不同。

设置显式Content确实有效:

<ContentPresenter Content="TEST" />

任何人都知道为什么内容绑定不起作用?我想我可以回退到通常的通用模板,但如果我可以像 UserControl 一样直接执行它会更容易。

4

2 回答 2

8

为控件模板添加 TargetType

<ContentControl.Template>
    <ControlTemplate  TargetType="Button">
        <Border BorderThickness="5" BorderBrush="LightGreen">
            <ContentPresenter />
        </Border>
    </ControlTemplate>
</ContentControl.Template>
于 2015-02-18T22:41:13.767 回答
4

使用TemplateBinding而不是Binding在 a 内ControlTemplate

<ContentControl.Template>
    <ControlTemplate TargetType="ContentControl">
        <Border BorderThickness="5" BorderBrush="LightGreen">
            <ContentPresenter Content="{TemplateBinding Content}"/>
        </Border>
    </ControlTemplate>
</ContentControl.Template>

编辑:

所示代码片段的重要部分TargetTypeControlTemplate. 与目标类型

<ContentControl.Template>
    <ControlTemplate TargetType="ContentControl">
        <Border BorderThickness="5" BorderBrush="LightGreen">
            <ContentPresenter/>
        </Border>
    </ControlTemplate>
</ContentControl.Template>

已经没有任何工作了TemplateBinding

于 2012-10-03T09:57:37.303 回答