TabAppearance Énumération

Définition

Spécifie l'aspect des onglets dans un contrôle Tab.

public enum class TabAppearance
public enum TabAppearance
type TabAppearance = 
Public Enum TabAppearance
Héritage
TabAppearance

Champs

Buttons 1

Les onglets ont l'aspect de boutons 3D.

FlatButtons 2

Les onglets ont l'aspect de boutons à deux dimensions (flat).

Normal 0

Les onglets ont un aspect standard.

Exemples

L’exemple de code suivant montre comment utiliser les propriétés et TabControl.Appearance les TabControl.Alignment énumérations et les TabAlignment propriétésTabAppearance. Pour exécuter l’exemple, collez le code suivant dans un formulaire contenant un TabControl tabControl1 appelé. Appelez la méthode ChangeTheLookOfTheTabControl dans le constructeur du formulaire ou la méthode Load.

private:
   void ChangeTheLookOfTheTabControl()
   {
      // Set the size and location of the TabControl.
      this->TabControl1->Location = System::Drawing::Point( 20, 20 );
      TabControl1->Size = 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;
   }
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;
}
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

Remarques

Cette énumération est utilisée par les membres tels que TabControl.Appearance.

S’applique à

Voir aussi