RadioButton.Checked Proprietà

Definizione

Ottiene o imposta un valore che indica se il controllo è selezionato.

public:
 property bool Checked { bool get(); void set(bool value); };
public bool Checked { get; set; }
[System.ComponentModel.Bindable(true)]
[System.ComponentModel.SettingsBindable(true)]
public bool Checked { get; set; }
member this.Checked : bool with get, set
[<System.ComponentModel.Bindable(true)>]
[<System.ComponentModel.SettingsBindable(true)>]
member this.Checked : bool with get, set
Public Property Checked As Boolean

Valore della proprietà

true se la casella di controllo è selezionata; in caso contrario, false.

Attributi

Esempio

Nell'esempio di codice seguente viene valutata una ListBox selezione e la Checked proprietà di un oggetto RadioButton. Quando viene selezionato un elemento specificato dalla casella di riepilogo, viene chiamato il PerformClick metodo di un altro RadioButton elemento. Questo esempio richiede che due RadioButton controlli e un'istanza ListBox siano stati creati in un modulo.

private:
   void ClickMyRadioButton()
   {
      // If Item1 is selected and radioButton2 
      // is checked, click radioButton1.
      if ( listBox1->Text == "Item1" && radioButton2->Checked )
      {
         radioButton1->PerformClick();
      }
   }
private void ClickMyRadioButton()
{
   // If Item1 is selected and radioButton2 
   // is checked, click radioButton1.
   if (listBox1.Text == "Item1" && radioButton2.Checked)
   {
      radioButton1.PerformClick();
   }
}
Private Sub ClickMyRadioButton()
    ' If Item1 is selected and radioButton2 
    ' is checked, click radioButton1.
    If (listBox1.Text = "Item1") And radioButton2.Checked Then
        radioButton1.PerformClick()
    End If
End Sub

Si applica a