VisualStyleElement.Window.MaxCaption Класс

Определение

Предоставляет объекты VisualStyleElement для каждого состояния заголовка развернутого окна. Этот класс не наследуется.

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

Примеры

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

public void DrawVisualStyleElementWindowMaxCaption1(PaintEventArgs e)
{
    if (VisualStyleRenderer.IsElementDefined(
        VisualStyleElement.Window.MaxCaption.Active))
    {
        VisualStyleRenderer renderer =
             new VisualStyleRenderer(VisualStyleElement.Window.MaxCaption.Active);
        Rectangle rectangle1 = new Rectangle(10, 50, 50, 50);
        renderer.DrawBackground(e.Graphics, rectangle1);
        e.Graphics.DrawString("VisualStyleElement.Window.MaxCaption.Active",
             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 DrawVisualStyleElementWindowMaxCaption1(ByVal e As PaintEventArgs)
    If (VisualStyleRenderer.IsElementDefined( _
     VisualStyleElement.Window.MaxCaption.Active)) Then
        Dim renderer As New VisualStyleRenderer _
          (VisualStyleElement.Window.MaxCaption.Active)
        Dim rectangle1 As New Rectangle(10, 50, 50, 50)
        renderer.DrawBackground(e.Graphics, rectangle1)
        e.Graphics.DrawString("VisualStyleElement.Window.MaxCaption.Active", _
          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

Комментарии

Каждое VisualStyleElement.Window.MaxCaption свойство класса возвращает VisualStyleElement для другого состояния строки заголовка развернутого окна.

Свойства

Active

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

Disabled

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

Inactive

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

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

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