예제 #1
0
파일: PLP.cs 프로젝트: v0icer/poltools
 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();
 }
예제 #2
0
파일: PLP.cs 프로젝트: polserver/poltools
 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();
 }