Udostępnij za pośrednictwem


RadioButton.Appearance Właściwość

Definicja

Pobiera lub ustawia wartość określającą wygląd obiektu RadioButton.

public:
 property System::Windows::Forms::Appearance Appearance { System::Windows::Forms::Appearance get(); void set(System::Windows::Forms::Appearance value); };
public System.Windows.Forms.Appearance Appearance { get; set; }
member this.Appearance : System.Windows.Forms.Appearance with get, set
Public Property Appearance As Appearance

Wartość właściwości

Appearance

Appearance Jedna z wartości. Wartość domyślna to Normal.

Wyjątki

Przypisana wartość nie jest jedną z Appearance wartości.

Przykłady

Poniższy przykład kodu tworzy i inicjuje RadioButtonelement , nadaje mu wygląd kontrolki przełącznika, ustawia jej 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

Jeśli wartość jest ustawiona Appearance na Normalwartość , kontrolka RadioButton zostanie narysowana za pomocą cyklicznego pola wyboru. Jeśli wartość jest ustawiona na Buttonwartość , RadioButton wartość jest rysowana jako kontrolka, która może zostać przełączona w stan w górę lub w dół. Typ może wyświetlać tekst, obraz lub oba typy.

Dotyczy

Zobacz też