private void notifyIcon_DoubleClick(object sender, EventArgs e) { if (ApplicationSettings.Instance.ShowLastMsg) { AlertScreen.DisplayAlert(null); } else { this.Show(); this.notifyIcon.Visible = false; if (m_toolbar.Visible) { m_toolbar.hideToolbar(); } else { m_toolbar.showToolbar(); } } }
private void showLastMgToolStripMenuItem_Click(object sender, EventArgs e) { AlertScreen.DisplayAlert(null); }