TabAlignment Enumerazione

Definizione

Specifica la posizione delle schede in un controllo struttura a schede.

public enum class TabAlignment
public enum TabAlignment
type TabAlignment = 
Public Enum TabAlignment
Ereditarietà
TabAlignment

Campi

Bottom 1

Le schede sono collocate nella parte inferiore del controllo.

Left 2

Le schede sono collocate lungo il bordo sinistro del controllo.

Right 3

Le schede sono collocate lungo il bordo destro del controllo.

Top 0

Le schede sono collocate nella parte superiore del controllo.

Esempio

Nell'esempio di codice seguente viene illustrato come usare le TabControl.Alignment proprietà e TabControl.Appearance e le TabAlignment enumerazioni e TabAppearance . Per eseguire l'esempio, incollare il codice seguente in un modulo contenente un TabControl oggetto denominato TabControl1. Chiamare il metodo ChangeTheLookOfTheTabControl nel costruttore o nel metodo Load del modulo.

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

Commenti

Questa enumerazione viene utilizzata dai membri, ad TabControl.Alignmentesempio .

Si applica a

Vedi anche