Esempio n. 1
0
        private void menuNotifyIcon_ItemClick(object sender, EventArgs e)
        {
            if (sender.Equals(mitemSettings))
            {
                this.Show();
            }
            else if (sender.Equals(mitemExit))
            {
                if (DebugLog.isLogging)
                {
                    DebugLog.outputToFile(SETTINGS_DIRECTORY + "log.txt");
                }

                Application.Exit();
            }
        }
Esempio n. 2
0
 private void buttonDump_Click(object sender, EventArgs e)
 {
     DebugLog.outputToFile(SETTINGS_DIRECTORY + "log.txt");
 }