TemplateBinding自定义窗口模板WPF中的标题

时间:2010-06-28 03:13:31

标签: wpf binding window title

所以我正在为我的WPF应用程序制作一个自定义窗口模板。我遇到的麻烦是我无法访问模板中的Window Title属性。

我试过了:

<TextBlock Text="{TemplateBinding Title}" />

而且:

<TextBlock Text="{Binding RelativeSource={RelativeSource TemplatedParent}, Path=Title}" />

我读过的所有内容都表明这两者中的任何一个都应该有用,但文本从未设置过。

有什么建议吗?

编辑:呈现整个样式xaml

<Style x:Key="RegularWindow" TargetType="{x:Type Window}">
    <Setter Property="Foreground" Value="{StaticResource {x:Static SystemColors.WindowTextBrushKey}}"/>
    <Setter Property="Background" Value="Transparent"/>
    <Setter Property="AllowsTransparency" Value="True"/>
    <Setter Property="WindowStyle" Value="None"/>
    <Setter Property="SizeToContent" Value="WidthAndHeight"/>
    <Setter Property="Template">
        <Setter.Value>
            <ControlTemplate TargetType="{x:Type Window}">
                <Border BorderBrush="{TemplateBinding BorderBrush}" CornerRadius="10" Background="{TemplateBinding Background}">
                    <Grid>
                        <Grid.RowDefinitions>
                            <RowDefinition/>
                            <RowDefinition/>
                        </Grid.RowDefinitions>
                        <TextBlock Text="{TemplateBinding Title}" FontWeight="Bold" Grid.Row="0" />
                        <AdornerDecorator Grid.Row="1">
                            <ContentPresenter/>
                        </AdornerDecorator>
                    </Grid>
                </Border>
            </ControlTemplate>
        </Setter.Value>
    </Setter>
</Style>

1 个答案:

答案 0 :(得分:1)

事实证明Expression Blend无法正确渲染窗口。一旦我运行代码它实际上工作。我不相信Expression Blend。