RadioButton.PerformClick Yöntem

Tanım

Click Bir kullanıcının tıklama benzetimini yaparak denetim için bir olay oluşturur.

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

Örnekler

Aşağıdaki kod örneği, bir ListBox seçimini ve Checked özelliğini RadioButtondeğerlendirir. Liste kutusundan belirtilen bir öğe seçildiğinde, PerformClick başka bir RadioButton öğenin yöntemi çağrılır. Bu örnek, bir formda iki RadioButton denetimin ve örneğinin ListBox oluşturulmasını gerektirir.

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

Şunlara uygulanır

Ayrıca bkz.