RadioButton Konstruktor
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.
Initialisiert eine neue Instanz der RadioButton-Klasse.
public:
RadioButton();
public RadioButton ();
Public Sub New ()
Beispiele
Im folgenden Codebeispiel wird ein RadioButtonSteuerelement erstellt und initialisiert, ergibt die Darstellung einer Umschaltfläche, 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
Die Standardansicht der RadioButton Schaltfläche hat seinen Text rechts neben der Schaltfläche ausgerichtet, und die AutoCheck Eigenschaft ist auf true
festgelegt.