簡単に言えば、次のイベントをサブスクライブして処理するにはどうすればよいですか?
System.Windows.Forms.Application.Exit(new System.ComponentModel.CancelEventArgs(true));
明らかに、これは私の CancelEventArgs を与えないからです:
Application.ApplicationExit += new EventHandler(ApplicationExitHandler);
private void ApplicationExitHandler(Object sender, EventArgs e)
{
...
}