コード例 #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();
 }