对齐wpf选项卡控制条
我正在尝试在右侧对齐选项卡控制条。
需要明确的是 - 我希望选项卡位于顶部(tabstripplacement),但在右侧对齐。
I'm trying to align a tabcontrol strip on the right.
Just to be clear - I want the tabs on the top (tabstripplacement), but aligned on the right.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
TabItem
的标头位于TabPanel
类型的面板中。我们可以在TabControl
的Resources中为其添加HorizontalAlignment="Right"
The Headers for the
TabItem
's are located in a panel of typeTabPanel
. We can addHorizontalAlignment="Right"
for it in the Resources ofTabControl
我不知道为什么,但 ItemsPanel 替换不起作用。您必须替换整个 TabControl 的模板:
I don’t know why, but ItemsPanel replacement doesn’t work. You must replace template for whole TabControl: