TabAppearance Перечисление

Определение

Задает вид вкладок в наборе вкладок.

public enum class TabAppearance
public enum TabAppearance
type TabAppearance = 
Public Enum TabAppearance
Наследование
TabAppearance

Поля

Buttons 1

Вкладки имеют вид объемных кнопок.

FlatButtons 2

Вкладки имеют вид плоских кнопок.

Normal 0

Вкладки имеют стандартный вид.

Примеры

В следующем примере кода показано, как использовать TabControl.Alignment свойства и TabControl.Appearance , а также перечисления TabAlignment и TabAppearance . Чтобы выполнить пример, вставьте следующий код в форму TabControl с именем TabControl1. Вызовите метод ChangeTheLookOfTheTabControl в конструкторе формы или методе 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

Комментарии

Это перечисление используется элементами, такими как TabControl.Appearance.

Применяется к

См. также раздел