RadioButton.PerformClick Metoda

Definice

Vygeneruje Click událost ovládacího prvku, která simuluje kliknutí uživatelem.

public:
 void PerformClick();
public void PerformClick ();
member this.PerformClick : unit -> unit
Public Sub PerformClick ()

Příklady

Následující příklad kódu vyhodnotí ListBox výběr a Checked vlastnost RadioButton. Když je ze seznamu vybrána zadaná položka, PerformClick volá se metoda jiné položky RadioButton . Tento příklad vyžaduje, aby se ve formuláři vytvořily dva RadioButton ovládací prvky a ListBox instance.

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

Viz také