Бөлісу құралы:


VisualStyleElement.StartPanel.MoreProgramsArrow Класс

Определение

Предоставляет VisualStyleElement объекты для каждого состояния стрелки "Все программы " в меню "Пуск ". Этот класс не может быть унаследован.

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

Примеры

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

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

Комментарии

Каждое свойство VisualStyleElement.StartPanel.MoreProgramsArrow класса возвращает VisualStyleElement для другого состояния стрелки "Все программы ".

Свойства

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

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

Normal

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

Pressed

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

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

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