Ejemplo n.º 1
0
 private void debuglogToolStripMenuItem_Click(object sender, EventArgs e)
 {
     if (m_DebugLog.IsDisposed)
     {
         m_DebugLog = new Tools.DebugLogForm();
     }
     else
     {
         m_DebugLog.Focus();
     }
     m_DebugLog.TopMost = true;
     m_DebugLog.Show();
 }
Ejemplo n.º 2
0
 private void debuglogToolStripMenuItem_Click(object sender, EventArgs e)
 {
     if (m_DebugLog.IsDisposed)
         m_DebugLog = new Tools.DebugLogForm();
     else
         m_DebugLog.Focus();
     m_DebugLog.TopMost = true;
     m_DebugLog.Show();
 }