Поделиться через


VisualStyleElement.Tab.TabItemBothEdges Класс

Определение

VisualStyleElement Предоставляет элемент управления tab, который использует верхнюю границу с другим элементом управления tab. Этот класс не может быть унаследован.

public: ref class VisualStyleElement::Tab::TabItemBothEdges abstract sealed
public static class VisualStyleElement.Tab.TabItemBothEdges
type VisualStyleElement.Tab.TabItemBothEdges = class
Public Class VisualStyleElement.Tab.TabItemBothEdges
Наследование
VisualStyleElement.Tab.TabItemBothEdges

Примеры

В следующем примере кода показано, как создать объект VisualStyleRenderer с VisualStyleElement возвращаемым свойством Normal . Чтобы запустить этот пример, вставьте его в Форму Windows Form. Обработайте событие формы Paint и вызовите DrawVisualStyleElementTabTabItemBothEdges1 метод из Paint метода обработки событий, передавая e как PaintEventArgs.

public void DrawVisualStyleElementTabTabItemBothEdges1(PaintEventArgs e)
{
    if (VisualStyleRenderer.IsElementDefined(
        VisualStyleElement.Tab.TabItemBothEdges.Normal))
    {
        VisualStyleRenderer renderer =
             new VisualStyleRenderer(VisualStyleElement.Tab.TabItemBothEdges.Normal);
        Rectangle rectangle1 = new Rectangle(10, 50, 50, 50);
        renderer.DrawBackground(e.Graphics, rectangle1);
        e.Graphics.DrawString("VisualStyleElement.Tab.TabItemBothEdges.Normal",
             this.Font, Brushes.Black, new Point(10, 10));
    }
    else
        e.Graphics.DrawString("This element is not defined in the current visual style.",
             this.Font, Brushes.Black, new Point(10, 10));
}
Public Sub DrawVisualStyleElementTabTabItemBothEdges1(ByVal e As PaintEventArgs)
    If (VisualStyleRenderer.IsElementDefined( _
     VisualStyleElement.Tab.TabItemBothEdges.Normal)) Then
        Dim renderer As New VisualStyleRenderer _
          (VisualStyleElement.Tab.TabItemBothEdges.Normal)
        Dim rectangle1 As New Rectangle(10, 50, 50, 50)
        renderer.DrawBackground(e.Graphics, rectangle1)
        e.Graphics.DrawString("VisualStyleElement.Tab.TabItemBothEdges.Normal", _
          Me.Font, Brushes.Black, New Point(10, 10))
    Else
        e.Graphics.DrawString("This element is not defined in the current visual style.", _
          Me.Font, Brushes.Black, New Point(10, 10))
    End If
End Sub

Комментарии

Свойство Normal класса возвращает VisualStyleElement элемент VisualStyleElement.Tab.TabItemBothEdges управления табуляции, который разделяет верхнюю границу с другим элементом управления tab.

Свойства

Имя Описание
Normal

Возвращает элемент визуального стиля, представляющий элемент управления tab, который разделяет верхнюю границу с другим элементом управления tab.

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

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