RadioButton.Appearance Eigenschaft
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Ruft einen Wert ab, der die Darstellung des RadioButton bestimmt, oder legt diesen fest.
public:
property System::Windows::Forms::Appearance Appearance { System::Windows::Forms::Appearance get(); void set(System::Windows::Forms::Appearance value); };
public System.Windows.Forms.Appearance Appearance { get; set; }
member this.Appearance : System.Windows.Forms.Appearance with get, set
Public Property Appearance As Appearance
Eigenschaftswert
Einer der Appearance-Werte. Der Standardwert ist Normal.
Ausnahmen
Der zugewiesene Wert ist keiner der Appearance-Werte.
Beispiele
Im folgenden Codebeispiel wird ein RadioButtonSteuerelement erstellt und initialisiert, ergibt es das Aussehen eines Umschaltsteuerelements, legt dessen AutoCheck Eigenschaft fest false
und fügt es zu einem Form.
private void InitializeMyRadioButton()
{
// Create and initialize a new RadioButton.
RadioButton radioButton1 = new RadioButton();
// Make the radio button control appear as a toggle button.
radioButton1.Appearance = Appearance.Button;
// Turn off the update of the display on the click of the control.
radioButton1.AutoCheck = false;
// Add the radio button to the form.
Controls.Add(radioButton1);
}
Private Sub InitializeMyRadioButton()
' Create and initialize a new RadioButton.
Dim radioButton1 As New RadioButton()
' Make the radio button control appear as a toggle button.
radioButton1.Appearance = Appearance.Button
' Turn off the update of the display on the click of the control.
radioButton1.AutoCheck = False
' Add the radio button to the form.
Controls.Add(radioButton1)
End Sub
Hinweise
Wenn der Appearance Wert auf Normal", dann wird das RadioButton Steuerelement mit einem kreisförmigen Kontrollkästchen gezeichnet. Wenn der Wert auf Button" festgelegt" ist, wird er RadioButton als Steuerelement gezeichnet, das in einen Nach-oben- oder Abwärtszustand versetzt werden kann. Jeder Typ kann Text, ein Bild oder beides anzeigen.