次の方法で共有


TabAppearance 列挙体

タブ コントロールのタブの外観を指定します。

<Serializable>
Public Enum TabAppearance
[C#]
[Serializable]
public enum TabAppearance
[C++]
[Serializable]
__value public enum TabAppearance
[JScript]
public
   Serializable
enum TabAppearance

解説

この列挙体は、 TabControl.Appearance などのメンバで使用されます。

メンバ

メンバ名 説明
Buttons タブには、3D ボタンの外観が設定されています。
FlatButtons タブには、フラットなボタンの外観が設定されています。
Normal タブには、標準の外観が設定されています。

使用例

[Visual Basic, C#] TabAppearance 列挙体の使用方法を示すコード例を次に示します。この例を実行するには、TabControl1 という名前の TabControl が配置されているフォームに、次のコードを貼り付けます。そして、フォームのコンストラクタまたは Load メソッドで ChangeTheLookOfTheTabControl メソッドを呼び出します。

 
Private Sub ChangeTheLookOfTheTabControl()

    ' Set the size and location of the TabControl.
    Me.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
End Sub

[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;
}

[C++, JScript] C++ および JScript のサンプルはありません。Visual Basic および C# のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン 言語のフィルタ をクリックします。

必要条件

名前空間: System.Windows.Forms

プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ

アセンブリ: System.Windows.Forms (System.Windows.Forms.dll 内)

参照

System.Windows.Forms 名前空間 | TabControl