对齐wpf选项卡控制条

发布于 2024-10-14 06:50:35 字数 79 浏览 4 评论 0原文

我正在尝试在右侧对齐选项卡控制条。

需要明确的是 - 我希望选项卡位于顶部(tabstripplacement),但在右侧对齐。

I'm trying to align a tabcontrol strip on the right.

Just to be clear - I want the tabs on the top (tabstripplacement), but aligned on the right.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

唐婉 2024-10-21 06:50:35

TabItem 的标头位于 TabPanel 类型的面板中。我们可以在TabControl的Resources中为其添加Horizo​​ntalAlignment="Right"

<TabControl ...>
    <TabControl.Resources>
        <Style TargetType="TabPanel">
            <Setter Property="HorizontalAlignment" Value="Right"/>
        </Style>
    </TabControl.Resources>
    <!--...-->
</TabControl>

The Headers for the TabItem's are located in a panel of type TabPanel. We can add HorizontalAlignment="Right" for it in the Resources of TabControl

<TabControl ...>
    <TabControl.Resources>
        <Style TargetType="TabPanel">
            <Setter Property="HorizontalAlignment" Value="Right"/>
        </Style>
    </TabControl.Resources>
    <!--...-->
</TabControl>
旧时光的容颜 2024-10-21 06:50:35

我不知道为什么,但 ItemsPanel 替换不起作用。您必须替换整个 TabControl 的模板:

<TabControl ItemsSource="{Binding Items}">
    <TabControl.Template>
        <ControlTemplate TargetType="TabControl">
            <DockPanel LastChildFill="True">
                <StackPanel DockPanel.Dock="Top" Orientation="Horizontal" HorizontalAlignment="Right" IsItemsHost="true"/>
                <ContentPresenter ContentSource="SelectedContent"/>
            </DockPanel>
        </ControlTemplate>
    </TabControl.Template>
    <!-- This XAML doesnt work!-->
    <!--<TabControl.ItemsPanel>
        <ItemsPanelTemplate>
            <StackPanel HorizontalAlignment="Right" IsItemsHost="True"/>
        </ItemsPanelTemplate>
    </TabControl.ItemsPanel>-->
</TabControl>

I don’t know why, but ItemsPanel replacement doesn’t work. You must replace template for whole TabControl:

<TabControl ItemsSource="{Binding Items}">
    <TabControl.Template>
        <ControlTemplate TargetType="TabControl">
            <DockPanel LastChildFill="True">
                <StackPanel DockPanel.Dock="Top" Orientation="Horizontal" HorizontalAlignment="Right" IsItemsHost="true"/>
                <ContentPresenter ContentSource="SelectedContent"/>
            </DockPanel>
        </ControlTemplate>
    </TabControl.Template>
    <!-- This XAML doesnt work!-->
    <!--<TabControl.ItemsPanel>
        <ItemsPanelTemplate>
            <StackPanel HorizontalAlignment="Right" IsItemsHost="True"/>
        </ItemsPanelTemplate>
    </TabControl.ItemsPanel>-->
</TabControl>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文