RadioButton Constructor

Definitie

Initialiseert een nieuw exemplaar van de RadioButton klasse.

public:
 RadioButton();
public RadioButton();
Public Sub New ()

Voorbeelden

Het volgende codevoorbeeld maakt en initialiseert een RadioButton, geeft het het uiterlijk van een wisselknop, stelt AutoCheck de eigenschap falsein op en voegt deze toe aan een 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

Opmerkingen

De standaardweergave van de RadioButton weergave heeft de tekst rechts van de knop uitgelijnd en de AutoCheck eigenschap is ingesteld op true.

Van toepassing op