私はVS 2010、winFormを使用しています。
プログラムプロセスが終了したときにメソッドを実行する方法を誰かが提案できますか?
私は試しました:プログラム終了前にコードを実行するには? 解決策ですが、タスクマネージャーでプロセスを終了すると「閉じるボタン」でフォームを閉じるだけで機能しますが、そのようなイベントを処理することはできますか?
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new MainForm());
AppDomain.CurrentDomain.ProcessExit += new EventHandler (OnProcessExit);
}
public static void OnProcessExit(object sender, EventArgs e)
{
if (Utils.RemindTime != DateTime.MinValue)
Utils.SetStartup(true);
}