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.
フォームが閉じたときに呼び出されるように定義された次のメソッドがあります
private void TimeKeeper_Closing(object sender, EventArgs e)
ただし、フォーム プロパティのイベント セクションで割り当てようとすると、リストに表示されません。そこに表示されるようにするために何かする必要がありますか?
編集:申し訳ありませんが、最初に間違った方法を投稿しました...
EventArgs を FormClosingEventArgs に変更する必要があります
private void TimeKeeper_Closing(object sender, FormClosingEventArgs e)