TabControl 底部的选项卡

18

如何让选项卡控件在底部而不是顶部放置选项卡?

3个回答

27

打开属性窗口,进入属性对齐并将其设置为底部


6

6年后,现在是:

<TabControl TabStripPlacement="Bottom"/>

3
这个问题是关于一个WinForms选项卡控件,而这个答案是针对WPF选项卡控件的。 - Étienne Laneville

4
如果你想编写程序来设置选项卡的对齐方式,请查看msdn
    // Positions tabs on the bottom of tabControl1
    this.tabControl1.Alignment = System.Windows.Forms.TabAlignment.Bottom;

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接