VisualStyleElement.Button.RadioButton Класс

Определение

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

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

Примеры

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

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

Свойства

CheckedDisabled

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

CheckedHot

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

CheckedNormal

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

CheckedPressed

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

UncheckedDisabled

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

UncheckedHot

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

UncheckedNormal

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

UncheckedPressed

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

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

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