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

Определение

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

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

Поля

Bottom 1

Вкладки расположены по нижнему краю элемента управления.

Left 2

Вкладки расположены по левому краю элемента управления.

Right 3

Вкладки расположены по правому краю элемента управления.

Top 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.Alignment.

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

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