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


VisualStyleElement.Status.Gripper Класс

Определение

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

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

Примеры

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

public void DrawVisualStyleElementStatusGripper1(PaintEventArgs e)
{
    if (VisualStyleRenderer.IsElementDefined(
        VisualStyleElement.Status.Gripper.Normal))
    {
        VisualStyleRenderer renderer =
             new VisualStyleRenderer(VisualStyleElement.Status.Gripper.Normal);
        Rectangle rectangle1 = new Rectangle(10, 50, 50, 50);
        renderer.DrawBackground(e.Graphics, rectangle1);
        e.Graphics.DrawString("VisualStyleElement.Status.Gripper.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 DrawVisualStyleElementStatusGripper1(ByVal e As PaintEventArgs)
    If (VisualStyleRenderer.IsElementDefined( _
     VisualStyleElement.Status.Gripper.Normal)) Then
        Dim renderer As New VisualStyleRenderer _
          (VisualStyleElement.Status.Gripper.Normal)
        Dim rectangle1 As New Rectangle(10, 50, 50, 50)
        renderer.DrawBackground(e.Graphics, rectangle1)
        e.Graphics.DrawString("VisualStyleElement.Status.Gripper.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.Status.Gripper, представляющий захват строки состояния.

Свойства

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

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

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

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