在 tabcontrol FLAT (WPF) 中制作 TabItems
我的 WPF 应用程序中有一个 tabControl。我想让选项卡变得平坦。当我将鼠标悬停在它们上方时,它们不能改变。
你能帮我解决这个问题吗?
I have a tabControl in my WPF application. I want to make tabitems flat.When I hover over them they must not change.
Can you help me about this problem?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不知道这是否正是您所需要的,但您可以将此数据模板和样式添加到资源字典中,以使用平面样式格式化
TabControl
...Don't know if this is exactly what you need, but you can add this data template and style to your Resource Dictionary to format an
TabControl
with a Flat Style...由于您想让
TabItem
变得扁平,因此您需要的只是从TabItem
的默认ControlTemplate
中删除触发器,这些触发器负责为您提供TabItem
交互式控件的外观和感觉。尝试这个示例,希望这是您想要的 -Since you want to make
TabItem
s flat, all you need is to remove the triggers from the defaultControlTemplate
ofTabItem
which are responsible for giving yourTabItem
the look and feel of interactive control. Try this sample, hope this is what you want -