TabAppearance Enumeração
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Especifica a aparência das guias em um controle guia.
public enum class TabAppearance
public enum TabAppearance
type TabAppearance =
Public Enum TabAppearance
- Herança
Campos
Buttons | 1 | As guias têm a aparência de botões tridimensionais. |
FlatButtons | 2 | As guias têm a aparência de botões planos. |
Normal | 0 | As guias têm a aparência padrão de guias. |
Exemplos
O exemplo de código a seguir demonstra como usar as TabControl.Alignment propriedades e TabControl.Appearance as enumerações e TabAppearance as TabAlignment propriedades. Para executar o exemplo, cole o código a seguir em um formulário que contém um TabControl TabControl1 chamado. Chame o método ChangeTheLookOfTheTabControl no construtor do formulário ou no 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
Comentários
Essa enumeração é usada por membros como TabControl.Appearance.