RadioButton Costruttore
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Inizializza una nuova istanza della classe RadioButton.
public:
RadioButton();
public RadioButton ();
Public Sub New ()
Esempio
Nell'esempio di codice seguente viene creato e inizializzato un RadioButtonoggetto , che fornisce l'aspetto di un pulsante di attivazione, imposta la relativa AutoCheck proprietà su false
e lo aggiunge a un Formoggetto .
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
Commenti
La visualizzazione predefinita dell'oggetto RadioButton ha il testo allineato a destra del pulsante e la AutoCheck proprietà è impostata su true
.