TabAppearance Enumeración

Definición

Especifica la apariencia de las fichas de un control de fichas.

public enum class TabAppearance
public enum TabAppearance
type TabAppearance = 
Public Enum TabAppearance
Herencia
TabAppearance

Campos

Buttons 1

Las fichas tienen la apariencia de botones tridimensionales.

FlatButtons 2

Las fichas tienen el aspecto de botones planos.

Normal 0

Las fichas tienen la apariencia estándar de fichas.

Ejemplos

En el ejemplo de código siguiente se muestra cómo usar las TabControl.Alignment propiedades y TabControl.Appearance y las TabAlignment enumeraciones y TabAppearance . Para ejecutar el ejemplo, pegue el código siguiente en un formulario que contiene un TabControl elemento denominado TabControl1. Llame al método ChangeTheLookOfTheTabControl en el constructor del formulario o en el método 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

Comentarios

Esta enumeración la usan los miembros como TabControl.Appearance.

Se aplica a

Consulte también