0

首先,我有一种风格作为应用程序资源中的资源,如下所示:

<Style x:Key="ContentTextBlock" TargetType="FrameworkElement">
   <Setter Property="TextBlock.HorizontalAlignment" Value="Center"/>
   <Setter Property="TextBlock.VerticalAlignment" Value="Center"/>
   <Setter Property="TextBlock.FontFamily" Value="Verdana"/>
   <Setter Property="TextBlock.FontSize" Value="12"/>
   <Setter Property="TextBlock.FontWeight" Value="Normal"/>
   <Setter Property="TextBlock.Foreground" Value="Orange"/>
</Style>

我创建了一个自定义控件,其中包含标题和内容。这是自定义控件模板中内容部分的外观:

<ContentPresenter Content="{TemplateBinding Content}"
                  Style="{DynamicResource ContentTextBlock}">
</ContentPresenter>

我的问题是,如果我像这样使用创建的控件:

<local:CutPage.Content>
            <TextBlock>Header</TextBlock>
</local:CutPage.Content>

Fontsize、FontWeight 和 FontFamily 被 TextBlock 的显式或默认样式覆盖(我认为是这种情况,但我不确定)。我已经阅读了有关依赖值顺序 od 优先级的文章,但是我怎么能猜出是什么覆盖了我的模板样式?我希望进入自定义控件的所有标题元素都使用这些值。我该怎么做?

PS 有趣的是,一些样式设置器可以工作(比如将文本垂直和水平居中),但其他的则不行!

4

2 回答 2

1

如果要保留 CustomControl,则必须定义与文本块属性匹配的依赖属性,并在 ControlTemplate 中进行绑定。

我要做的是创建一个从 TextBox 派生的 CustomControl,然后更改它的 ControlTemplate 以添加您需要的内容并将您需要的所有内容绑定到 ControlTemplate 中。

或者,您可以只使用似乎完全符合您需要的HeaderedContentControl 。

<HeaderedContentControl FontFamily="Arial" Foreground="Red" Header="Hello World">
    <Rectangle Width="10" Height="10" Fill="Blue" />
</HeaderedContentControl>
于 2012-10-16T09:51:12.973 回答
1

你可以把你的基本样式放在一个单独的文件中,然后在你的文本块中使用它继承它,就像这样:

<TextBlock>
<Style TargetType="..." BasedOn="{StaticResource MyGeneralStyle}">                       <Setter Property="Foreground" Value="..."/>
</Style>
</TextBlock>
于 2012-10-16T09:53:04.890 回答