private void WindowMain_Closed(object sender, EventArgs e)
 {
     _threadUpdateUI.Abort();
     SaveDeviceStates();
     _trayIcon.Hide();
     _trayIcon.Dispose();
 }
Ejemplo n.º 2
0
        /// <summary>
        /// アプリケーションを終了します。
        /// </summary>
        public void End()
        {
            KeyCollector.Current.SaveCollection();
            MouseCollector.Current.SaveCollection();

            WpfNotifyIcon.Dispose();
            this.Shutdown();
        }