有没有人有一个带有单个ContentPresenter的UserControl的简单示例?

时间:2009-10-19 01:24:20

标签: wpf xaml user-controls contentpresenter

到目前为止,我有这个:

<UserControl
    x:Class="MyConcept.ExpanderPanel"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
    <Grid>
        <Border
            Style="{StaticResource Border_PanelStyle}"
            CornerRadius="3" />
        <ContentPresenter />
    </Grid>
</UserControl>

此UserControl的示例用法:

<nc:ExpanderPanel
    Grid.Row="0">
    <Expander
        IsExpanded="True"
        Header="NMT Users">
        <StackPanel>
            ...
        </StackPanel>
    </Expander>
</nc:ExpanderPanel>

讨论

如果我跑这个,我什么也看不见。没有内容,甚至没有内置到UserControl的边框。

我想也许我需要让ContentPresenter成为依赖属性,但我无法弄清楚如何将属性链接到UserControl的XAML中的ContentPresenter。

有人可以提供一个简单示例,说明如何使用单个UserControl构建ContentPresenter(或某种自定义控件)吗?

1 个答案:

答案 0 :(得分:4)

ContentPresenters主要用于ControlTemplates,并与ContentControl.Content的TemplateBinding绑定。 来自此site ...使用ContentPresenter的按钮的控件模板

<Style TargetType="{x:Type Button}">
  <Setter Property="Background" Value="White" />
  <Setter Property="Template">
    <Setter.Value>
      <ControlTemplate>
        <Grid>
          <Rectangle Fill="{TemplateBinding Property=Background}" />
            <ContentPresenter
              Content="{TemplateBinding Property=ContentControl.Content}" />
        </Grid>
      </ControlTemplate>
    </Setter.Value>
  </Setter>
</Style>