ContentControl包装问题

时间:2014-04-17 12:48:27

标签: c# .net wpf xaml wpf-controls

我正在尝试创建自定义工具提示控件。此控件继承自ToolTip类。我的自定义工具提示将具有标题和内容区域。内容可以是普通文本或任何其他内容(图像,richtextbox等)。以下是自定义工具提示控件的模板样式。

    <Setter Property="Template">
        <Setter.Value>
            <ControlTemplate TargetType="{x:Type customControls:FlyoutHelp}">
                <Border BorderThickness="0" Margin="15" Width="300">
                    <Border.Effect>
                        <DropShadowEffect Opacity="0.7"  />
                    </Border.Effect>
                    <StackPanel  TextBlock.FontFamily="Trebuchet MS" TextBlock.FontSize='12'>
                        <TextBlock Background="{StaticResource DellBlue}" Height="23" Foreground="#FFFFFF" Padding="0,4,0,0"  TextAlignment="Center" Text="{Binding HeaderText, RelativeSource={RelativeSource Mode=TemplatedParent}}" />
                        <Border Background="{StaticResource DellLightGrey}" TextBlock.Foreground="{StaticResource DarkestGrey}" Padding="8">
                            <ContentControl   Content="{Binding HelpContent, RelativeSource={RelativeSource Mode=TemplatedParent}}"   />
                        </Border>
                    </StackPanel>
                </Border>
            </ControlTemplate>
        </Setter.Value>
    </Setter>

现在您可以在我的模板中看到我正在使用ContentControl来显示工具提示的内容。问题是当我的HelpContent只是普通的String时,它不会包装那个文本。我不能用TextBlock替换ContentControl,因为HelpContent也可能是其他类型(image,richtextbox等)。任何人都可以请我提供解决此问题的最佳方法是什么?我会非常感激。

2 个答案:

答案 0 :(得分:5)

ContentControl标记替换为:

<ContentPresenter Content="{TemplateBinding HelpContent}">
    <ContentPresenter.Resources>
        <Style TargetType="{x:Type TextBlock}">
            <Setter Property="TextWrapping" Value="Wrap"/>
        </Style>
    </ContentPresenter.Resources>
</ContentPresenter>

[注意:您可以将其保留为ContentControl,但ContentPresenter更轻,遵循惯例]

答案 1 :(得分:0)

StackPanel更改为Grid,因为它不知道要换行的宽度。

<Grid TextBlock.FontFamily="Trebuchet MS" TextBlock.FontSize='12'>
  <Grid.RowDefinitions>
     <RowDefinitions/>
     <RowDefinitions/>
  <Grid.RowDefinitions/>
  <TextBlock Grid.Row="0" Background="{StaticResource DellBlue}" Height="23" Foreground="#FFFFFF" Padding="0,4,0,0"  TextAlignment="Center" Text="{Binding HeaderText, RelativeSource={RelativeSource Mode=TemplatedParent}}" />
  <Border Grid.Row="1" Background="{StaticResource DellLightGrey}" TextBlock.Foreground="{StaticResource DarkestGrey}" Padding="8">
    <ContentControl   Content="{Binding HelpContent, RelativeSource={RelativeSource Mode=TemplatedParent}}"   />
  </Border>
</Grid>