RadioButton.Checked Vlastnost

Definice

Získá nebo nastaví hodnotu označující, zda je ovládací prvek zaškrtnut.

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

Hodnota vlastnosti

truepokud je políčko zaškrtnuté; v opačném případě . false

Atributy

Příklady

Následující příklad kódu vyhodnotí ListBox výběr a Checked vlastnost objektu RadioButton. Pokud je ze seznamu vybrána zadaná položka, PerformClick je volána metoda jiné položky RadioButton . Tento příklad vyžaduje, aby ve formuláři byly vytvořena instance dvou RadioButton ovládacích prvků a ListBox .

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

Platí pro