RadioButton Konstruktor
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
Inicjuje nowe wystąpienie klasy RadioButton.
public:
RadioButton();
public RadioButton ();
Public Sub New ()
Przykłady
Poniższy przykład kodu tworzy i inicjuje RadioButtonelement , nadaje mu wygląd przycisku przełącznika, ustawia jego AutoCheck właściwość na false
, a następnie dodaje ją do elementu 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
Uwagi
Widok domyślny obiektu RadioButton ma tekst wyrównany do prawej strony przycisku, a AutoCheck właściwość jest ustawiona na true
wartość .