TabAppearance Enumerazione
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Specifica l'aspetto delle schede in un controllo struttura a schede.
public enum class TabAppearance
public enum TabAppearance
type TabAppearance =
Public Enum TabAppearance
- Ereditarietà
Campi
Buttons | 1 | Le schede hanno l'aspetto di pulsanti tridimensionali. |
FlatButtons | 2 | Le schede hanno l'aspetto di pulsanti bidimensionali. |
Normal | 0 | Le schede hanno un aspetto standard. |
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.Appearanceesempio .