RadioButton.Appearance Propriété

Définition

Obtient ou définit une valeur déterminant l'apparence de 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

Valeur de propriété

Appearance

Une des valeurs de l'objet Appearance. La valeur par défaut est Normal.

Exceptions

La valeur assignée ne fait pas partie des valeurs Appearance.

Exemples

L’exemple de code suivant crée et initialise un RadioButton, lui donne l’apparence d’un contrôle bascule, définit sa AutoCheck propriété falsesur , et l’ajoute à un 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

Remarques

Si la Appearance valeur est définie sur , le RadioButton contrôle est dessiné avec une case à Normalcocher circulaire. Si la valeur est définie Button, elle RadioButton est dessinée en tant que contrôle pouvant être désactivé vers un état haut ou bas. Le type peut afficher du texte, une image ou les deux.

S’applique à

Voir aussi