如何在 tabcontrol 的样式中设置 tabitem 的默认样式

发布于 2024-10-12 01:49:30 字数 621 浏览 6 评论 0原文

我正在为我的应用程序中的某些 TabControl 创建特定样式。

<TabControl Style="{StaticResource MyTabControl}">
</TabControl>

我还想在此特定 TabControl 的样式的情况下设置 TabItem 的样式。

现在,我必须写:

<TabControl Style="{StaticResource MyTabControl}">
    <TabItem Style="{StaticResource MyTabItem}" Header="First" />
    <TabItem Style="{StaticResource MyTabItem}" Header="Second" />
</TabControl>

不必在每个 TabItem 上指定“MyTabItem”样式,是否有任何方法可以仅在特定 TabControl 样式的范围内设置默认 TabItem 样式

我没有找到一种方法来指定在 TabControl 的样式中应将哪种样式应用于所有子 TabItem。

I'm creating a specific style for some TabControl in my application.

<TabControl Style="{StaticResource MyTabControl}">
</TabControl>

I want to also style TabItem in the case of this specific TabControl's Style.

For now, I must write :

<TabControl Style="{StaticResource MyTabControl}">
    <TabItem Style="{StaticResource MyTabItem}" Header="First" />
    <TabItem Style="{StaticResource MyTabItem}" Header="Second" />
</TabControl>

Instead of having to specify the "MyTabItem" style on each TabItem, is there any way to set the default TabItem style only in the scope of a specific TabControl Style ?

I didn't found a way to specify, in the style of my TabControl, which style should be applied on all children TabItems.

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

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

发布评论

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

评论(2

执妄 2024-10-19 01:49:30
<TabControl ItemContainerStyle="{StaticResource MyTabItem}"/>
<TabControl ItemContainerStyle="{StaticResource MyTabItem}"/>
ま柒月 2024-10-19 01:49:30

将目标类型 TabItem 的样式作为隐式样式放置在 MyTabItem 样式资源下

<Style TargetType="TabControl" x:Key="TabControlStyle">
            <Style.Resources>
                <Style TargetType="TabItem">

                </Style>

put style for target type TabItem as a implicit style under your MyTabItem style resource

<Style TargetType="TabControl" x:Key="TabControlStyle">
            <Style.Resources>
                <Style TargetType="TabItem">

                </Style>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文