Beispiel #1
0
 /// <summary>
 /// About Form 표시
 /// </summary>
 /// <param name="sender"></param>
 /// <param name="e"></param>
 private void ShowAboutThis(object sender, EventArgs e)
 {
     //MessageBox.Show(DEFINE.MESSAGE_ABOUT);
     if (m_form_about == null)
     {
         m_form_about               = new FolderMemoAboutBox();
         m_form_about.FormClosed   += new FormClosedEventHandler(AboutFormClosed);
         m_form_about.Text          = DEFINE.TRAY_NAME + " About";
         m_form_about.Icon          = Properties.Resources.icon_stick_note_32x;
         m_form_about.ShowInTaskbar = false;
         m_form_about.Show();
     }
     else
     {
         m_form_about.Focus();
     }
 }
Beispiel #2
0
 void AboutFormClosed(object sender, FormClosedEventArgs e)
 {
     m_form_about = null;
 }