示例#1
0
 //巡更系统
 private void show_xungeng()
 {
     if (this.checkChildFrmExist("巡更系统") == true)
     {
         return;
     }
     Form f = new Form();
     f = new xg.xg_main();
     f.Text = "巡更系统";
     f.MdiParent = this;
     f.WindowState = FormWindowState.Maximized;
     f.Show();
 }
示例#2
0
文件: main.cs 项目: hkiaipc/guye
 //巡更系统
 private void toolStripButton6_Click(object sender, EventArgs e)
 {
     if (this.checkChildFrmExist("巡更系统") == true)
     {
         return;
     }
     Form f = new xg.xg_main();
     f.Text = "巡更系统";
     f.MdiParent = this;
     f.WindowState = FormWindowState.Maximized;
     f.Show();
 }