TabAlignment Wyliczenie
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
Określa lokalizacje kart w kontrolce karty.
public enum class TabAlignment
public enum TabAlignment
type TabAlignment =
Public Enum TabAlignment
- Dziedziczenie
Pola
Bottom | 1 | Karty znajdują się w dolnej części kontrolki. |
Left | 2 | Karty znajdują się wzdłuż lewej krawędzi kontrolki. |
Right | 3 | Karty znajdują się wzdłuż prawej krawędzi kontrolki. |
Top | 0 | Karty znajdują się w górnej części kontrolki. |
Przykłady
W poniższym przykładzie kodu pokazano, jak używać TabControl.Alignment właściwości i TabControl.Appearance oraz wyliczeń TabAlignment i TabAppearance . Aby uruchomić przykład, wklej następujący kod w formularzu zawierającym TabControl nazwę TabControl1. Wywołaj metodę ChangeTheLookOfTheTabControl w konstruktorze formularza lub metodzie 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
Uwagi
To wyliczenie jest używane przez elementy członkowskie, takie jak TabControl.Alignment.