Как использовать обязательный родственник в стиле

Использование стиля по умолчанию

<Style TargetType="{x:Type TabItem}"x:Key="HeaderStyleS">
    <Setter Property="Header" Value="{Binding RelativeSource={RelativeSource Self}, 
            Path=Content.DataContext.ViewName}" />
</Style>

Оно работает. Но в моем случае мне нужно настроить TabItem Так что я использовал

<Style TargetType="{x:Type TabItem}" x:Key="HeaderStyle">
<Setter Property="FocusVisualStyle" Value="{x:Null}"/>
<Setter Property="Background" Value="Transparent"/>
<Setter Property="Template">
    <Setter.Value>
        <ControlTemplate TargetType="{x:Type TabItem}">
            <Grid Background="{TemplateBinding Background}" SnapsToDevicePixels="true" Height="23">
                <Grid.ColumnDefinitions>
                    <ColumnDefinition Width="Auto"/>
                    <ColumnDefinition Width="25"/>
                </Grid.ColumnDefinitions>
                <ContentPresenter ContentSource="Header" Margin="10,0,10,0" HorizontalAlignment="Center" VerticalAlignment="Center">
                    <ContentPresenter.Resources>
                        <Style TargetType="TextBlock">
                            <Setter Property="Foreground" Value="{StaticResource Foreground}"/>
                            <Setter Property="Text"  Value="{Binding RelativeSource={RelativeSource TemplatedParent}, Path=Content.DataContext.ViewName}"></Setter>
                        </Style>
                    </ContentPresenter.Resources>
                </ContentPresenter>
                <Button Grid.Column="1" Height="15" Width="15" HorizontalAlignment="Center" VerticalAlignment="Center">
                ...
</Style>

Проблема сейчас заключается в Header Текст не отображается. Есть идеи?

1 ответ

Попробуйте это:

{Binding Path=Content.DataContext.ViewName, RelativeSource={RelativeSource AncestorType={x:Type TabItem}}}

или же

{Binding Path=DataContext.ViewName, RelativeSource={RelativeSource AncestorType={x:Type TabItem}}}

или же

{Binding Path=ViewName}

Другие вопросы по тегам