示例#1
0
 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();
         }
     }
 }
示例#2
0
 private void showLastMgToolStripMenuItem_Click(object sender, EventArgs e)
 {
     AlertScreen.DisplayAlert(null);
 }