如何在WPF中构建垂直选项卡集?
如何在WPF中构建垂直选项卡集?这些选项卡将从上到下堆叠起来,就像 Visual Studio 中显示的项目的“属性”一样。
How to build vertical tab sets in WPF? The tabs will stack up in top-to-bottom just like the "Properties" of a project shown in visual studio.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您是否尝试过
TabControl.TabStripPlacement< /code> 属性
?
Have you tried the
TabControl.TabStripPlacement
Property?你应该尝试这个代码:
You should try this code:
基于 rkirac 上面的回答。如果您不想创建全局样式,则可以将相同的内容放入
TabControl.ItemContainerStyle
中,这只会影响相关的TabControl
。下面是一个简单的例子:Based on rkirac's answer above. If you don't want to create a global style, you can put the same stuff inside
TabControl.ItemContainerStyle
that will only affect theTabControl
in question. Following is a simple example: