如何在 tabcontrol 的样式中设置 tabitem 的默认样式
我正在为我的应用程序中的某些 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将目标类型 TabItem 的样式作为隐式样式放置在 MyTabItem 样式资源下
put style for target type TabItem as a implicit style under your MyTabItem style resource