Esempio n. 1
0
 public static Remotecontrol getInstance()
 {
     if (rtc == null || rtc.IsDisposed)
     {
         rtc = new Remotecontrol();
         rtc.FormBorderStyle = FormBorderStyle.None;
         rtc.Dock            = DockStyle.Fill;
         rtc.MdiParent       = Cat.ActiveForm;
         rtc.WindowState     = FormWindowState.Maximized;
     }
     return(rtc);
 }
Esempio n. 2
0
File: Cat.cs Progetto: ShinEDL/Spyer
        //远程控制
        private void 远程监控ToolStripMenuItem_Click(object sender, EventArgs e)
        {
            Form active = this.ActiveMdiChild;

            if (active != null)
            {
                active.Dispose();
            }
            if (rtc == null || rtc.IsDisposed)
            {
                rtc = Remotecontrol.getInstance();
                rtc.Show();
            }
        }