VisualStyleElement.ComboBox.DropDownButton Класс

Определение

Предоставляет объекты VisualStyleElement для различных состояний стрелки раскрывающегося поля со списком. Этот класс не наследуется.

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

Примеры

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

public void DrawVisualStyleElement_ComboBox_DropDownButton2(PaintEventArgs e)
{
    if (VisualStyleRenderer.IsElementDefined(
        VisualStyleElement.ComboBox.DropDownButton.Hot))
    {
        VisualStyleRenderer renderer =
             new VisualStyleRenderer(VisualStyleElement.ComboBox.DropDownButton.Hot);
        Rectangle rectangle1 = new Rectangle(10, 50, 50, 50);
        renderer.DrawBackground(e.Graphics, rectangle1);
        e.Graphics.DrawString("VisualStyleElement.ComboBox.DropDownButton.Hot",
             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 DrawVisualStyleElement_ComboBox_DropDownButton2(ByVal e As PaintEventArgs)
    If (VisualStyleRenderer.IsElementDefined( _
     VisualStyleElement.ComboBox.DropDownButton.Hot)) Then
        Dim renderer As New VisualStyleRenderer _
          (VisualStyleElement.ComboBox.DropDownButton.Hot)
        Dim rectangle1 As New Rectangle(10, 50, 50, 50)
        renderer.DrawBackground(e.Graphics, rectangle1)
        e.Graphics.DrawString("VisualStyleElement.ComboBox.DropDownButton.Hot", _
          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.ComboBox.DropDownButton свойство класса возвращает VisualStyleElement для другого состояния стрелки раскрывающегося списка элемента управления "Поле со списком".

Свойства

Disabled

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

Hot

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

Normal

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

Pressed

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

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

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