Freigeben über


RadioButton.Checked-Eigenschaft

Ruft einen Wert ab, der angibt, ob das Steuerelement aktiviert ist, oder legt diesen fest.

Namespace: System.Windows.Forms
Assembly: System.Windows.Forms (in system.windows.forms.dll)

Syntax

'Declaration
<BindableAttribute(True)> _
Public Property Checked As Boolean
'Usage
Dim instance As RadioButton
Dim value As Boolean

value = instance.Checked

instance.Checked = value
[BindableAttribute(true)] 
public bool Checked { get; set; }
[BindableAttribute(true)] 
public:
property bool Checked {
    bool get ();
    void set (bool value);
}
/** @property */
public boolean get_Checked ()

/** @property */
public void set_Checked (boolean value)
public function get Checked () : boolean

public function set Checked (value : boolean)

Eigenschaftenwert

true, wenn das Kontrollkästchen aktiviert ist, andernfalls false.

Beispiel

Im folgenden Codebeispiel wird eine ListBox-Auswahl und die Checked-Eigenschaft von RadioButton ausgewertet. Wenn ein bestimmtes Element im Listenfeld ausgewählt wird, wird dadurch die PerformClick-Methode eines anderen RadioButton aufgerufen. Für dieses Beispiel ist es erforderlich, dass zwei RadioButton-Steuerelemente und eine ListBox in einem Formular instanziiert wurden.

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
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 void ClickMyRadioButton()
{
    // If Item1 is selected and radioButton2 is checked, click radioButton1.
    if ( listBox1.get_Text().equals("Item1") && radioButton2.get_Checked()) {
            radioButton1.PerformClick();
    }
} //ClickMyRadioButton

Plattformen

Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile für Pocket PC, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

.NET Framework unterstützt nicht alle Versionen sämtlicher Plattformen. Eine Liste der unterstützten Versionen finden Sie unter Systemanforderungen.

Versionsinformationen

.NET Framework

Unterstützt in: 2.0, 1.1, 1.0

.NET Compact Framework

Unterstützt in: 2.0, 1.0

Siehe auch

Referenz

RadioButton-Klasse
RadioButton-Member
System.Windows.Forms-Namespace