Share via


RadioButton Construtor

Definição

Inicializa uma nova instância da classe RadioButton.

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

Exemplos

O exemplo de código a seguir cria e inicializa um RadioButton, dá a ele a aparência de um botão de alternância, define sua AutoCheck propriedade como falsee a adiciona a um 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

Comentários

A exibição padrão do RadioButton texto está alinhada à direita do botão e a AutoCheck propriedade está definida como true.

Aplica-se a