VisualStyleElement.Button.PushButton Sınıf

Tanım

VisualStyleElement Düğme denetiminin farklı durumları için nesneler sağlar. Bu sınıf devralınamaz.

public: ref class VisualStyleElement::Button::PushButton abstract sealed
public static class VisualStyleElement.Button.PushButton
type VisualStyleElement.Button.PushButton = class
Public Class VisualStyleElement.Button.PushButton
Devralma
VisualStyleElement.Button.PushButton

Örnekler

Aşağıdaki kod örneği, özelliği tarafından VisualStyleElement.Button.PushButton döndürülen ile VisualStyleElement nasıl oluşturulacağını VisualStyleRenderer gösterir. Bu örneği çalıştırmak için windows formuna yapıştırın. Formun Paint olayını işleyip yöntemini olay işleme yönteminden Paint olarak geçirerek çağırın eDrawVisualStyleElement_Button_PushButton1PaintEventArgs.

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

Açıklamalar

sınıfının her özelliği, düğme denetiminin VisualStyleElement.Button.PushButton farklı bir durumu için bir VisualStyleElement döndürür.

Özellikler

Default

Varsayılan düğmeyi temsil eden görsel stil öğesini alır.

Disabled

Devre dışı bırakılmış bir düğmeyi temsil eden görsel stil öğesini alır.

Hot

Etkin düğmeyi temsil eden görsel stil öğesini alır.

Normal

Normal bir düğmeyi temsil eden görsel stil öğesini alır.

Pressed

Basılan bir düğmeyi temsil eden görsel stil öğesini alır.

Şunlara uygulanır

Ayrıca bkz.