Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想要零功能和外观。我还希望它一直位于标签条的右侧。有人对我如何做到这一点有任何指示吗?
并非控件的所有视觉功能都可以通过标准属性(BorderBrush、Background 等)自定义。您需要编辑 TabItem 的 ControlTemplate 以隐藏鼠标悬停效果。
您还需要编辑父 TabControl 的 ControlTemplate。在承载 TabItems 的条带上放置一个透明的 Rectangle 以捕获鼠标事件。您还需要为所有 TabItems 设置 IsTabStop = false 以禁用键盘交互。