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 Forms. Обработайте событие формы 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

Комментарии

Свойство NormalVisualStyleElement.Status.Gripper класса возвращает объект , VisualStyleElement представляющий захват строки состояния.

Свойства

Normal

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

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

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