VisualStyleElement.Button.RadioButton Sınıf
Tanım
Önemli
Bazı bilgiler ürünün ön sürümüyle ilgilidir ve sürüm öncesinde önemli değişiklikler yapılmış olabilir. Burada verilen bilgilerle ilgili olarak Microsoft açık veya zımni hiçbir garanti vermez.
VisualStyleElement Radyo düğmesi denetiminin farklı durumları için nesneler sağlar. Bu sınıf devralınamaz.
public: ref class VisualStyleElement::Button::RadioButton abstract sealed
public static class VisualStyleElement.Button.RadioButton
type VisualStyleElement.Button.RadioButton = class
Public Class VisualStyleElement.Button.RadioButton
- Devralma
-
VisualStyleElement.Button.RadioButton
Örnekler
Aşağıdaki kod örneği, özelliği tarafından VisualStyleElement.Button.RadioButton 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 olarak geçirerek olay işleme yönteminden Paint yöntemini çağırın e
DrawVisualStyleElement_Button_RadioButton1
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
Açıklamalar
sınıfının her özelliği VisualStyleElement.Button.RadioButton , radyo düğmesi denetiminin farklı bir durumu için bir VisualStyleElement döndürür.
Özellikler
CheckedDisabled |
İşaretli durumda devre dışı bırakılmış bir radyo düğmesini temsil eden görsel stil öğesini alır. |
CheckedHot |
İşaretli durumdaki etkin radyo düğmesini temsil eden görsel stil öğesini alır. |
CheckedNormal |
İşaretli durumdaki normal bir radyo düğmesini temsil eden görsel stil öğesini alır. |
CheckedPressed |
İşaretli durumdaki basılan radyo düğmesini temsil eden görsel stil öğesini alır. |
UncheckedDisabled |
İşaretlenmemiş durumda devre dışı bırakılmış bir radyo düğmesini temsil eden görsel stil öğesini alır. |
UncheckedHot |
İşaretlenmemiş durumdaki bir etkin radyo düğmesini temsil eden görsel stil öğesini alır. |
UncheckedNormal |
İşaretlenmemiş durumdaki normal bir radyo düğmesini temsil eden görsel stil öğesini alır. |
UncheckedPressed |
Basılan radyo düğmesini işaretlenmemiş durumda temsil eden görsel stil öğesini alır. |