TabAppearance 枚举

定义

指定选项卡控件中的选项卡外观。

C#
public enum TabAppearance
继承
TabAppearance

字段

名称 说明
Buttons 1

选项卡具有三维按钮的外观。

FlatButtons 2

选项卡具有平面按钮的外观。

Normal 0

该选项卡具有选项卡的标准外观。

示例

下面的代码示例演示如何使用 TabControl.AlignmentTabControl.Appearance 属性以及 TabAlignmentTabAppearance 枚举。 若要运行该示例,请将以下代码粘贴到包含 TabControl 名为 TabControl1 的窗体中。 在窗体的构造函数或 Load 方法中调用 ChangeTheLookOfTheTabControl 方法。

C#
private void ChangeTheLookOfTheTabControl()
{

    // Set the size and location of the TabControl.
    this.TabControl1.Location = new System.Drawing.Point(20, 20);
    TabControl1.Size = new System.Drawing.Size(250, 250);

    // Align the tabs along the bottom of the control.
    TabControl1.Alignment = TabAlignment.Bottom;

    // Change the tabs to flat buttons.
    TabControl1.Appearance = TabAppearance.FlatButtons;
}

注解

此枚举由成员(如 ) TabControl.Appearance使用。

适用于

产品 版本
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9

另请参阅