Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Windowsフォームに2つのチェックボックスがあるプログラムを作成しています。最初の CheckBox はファイルをクリアするためのもので、もう 1 つはそれを印刷するためのものです。しかし、最終的な選択、メソッドの開始はボタンです。「チェックボックス1がクリックされたら、これとこれを行う」のようなifステートメントのようなものを作りたいです。ただし、ボタンによって起動する必要があります。
Visual Studio では、ビジュアル デザイナーでフォームを編集中にボタンをダブルクリックすると、コード ファイルが表示されます。というメソッドが生成されます(name of your button)_Click (object sender, EventArgs e)。ボタンのクリックにも自動的にバインドされます。そこにコードを入れるだけです。
(name of your button)_Click (object sender, EventArgs e)