示例#1
0
        public new static void Show()
        {
            if (visibleForm != null)
            {
                visibleForm.BringToFront();
                return;
            }

            visibleForm = new DebugLogViewerForm();
            ((Form)visibleForm).Show();
        }
示例#2
0
 private void DebugLogVeiwerMenuItem_Click(object sender, EventArgs e)
 {
     DebugLogViewerForm.Show();
 }
示例#3
0
 private void DebugLogViewerForm_FormClosed(object sender, FormClosedEventArgs e)
 {
     visibleForm = null;
 }