RadioButton.PerformClick メソッド

定義

コントロールの Click イベントを生成して、ユーザーによるクリックをシミュレートします。

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

次のコード例では、 ListBox の選択範囲と プロパティをCheckedRadioButton評価します。 リスト ボックスから指定した項目を選択すると、別RadioButtonPerformClick のメソッドが呼び出されます。 この例では、フォーム上で 2 つの RadioButton コントロールと が 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

適用対象

こちらもご覧ください