作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在从 TabControl 的 ItemContainerStyle 中的默认样式继承时遇到问题。
目的是继承主题风格,只改变一些属性。
如果我编写此 XAML 代码,则使用默认的 TabItem 样式,但不使用主题样式。
你知道为什么吗?
<TabControl>
<TabControl.Resources>
<Style TargetType="Button" BasedOn="{StaticResource {x:Type Button}}">
<Setter Property="Background" Value="DarkBlue"/>
</Style>
</TabControl.Resources>
<TabControl.ItemContainerStyle>
<Style TargetType="TabItem" BasedOn="{StaticResource {x:Type TabItem}}">
<Setter Property="Background" Value="Blue"/>
<Setter Property="Foreground" Value="Red"/>
</Style>
</TabControl.ItemContainerStyle>
<TabItem Header="Tab 1"/>
<TabItem Header="Tab 2"/>
<TabItem Header="Tab 3"/>
<TabItem Header="Tab 4"/>
</TabControl>
最佳答案
我猜 TabItemStyle 和 ItemContainerStyle 是两个不同的东西
ItemContainerStyle 应用于为每个项目生成的容器元素。
而您正在尝试在 ItemContainerStyle 中设置 TabItemStyle。
关于WPF : How to inherit from a base(or default) style in an ItemContainerStyle,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16835997/
我是一名优秀的程序员,十分优秀!