コード例 #1
0
 void CloseForm(object sender, FormClosedEventArgs e)
 {
     formrov = null;
     fc1     = null;
     fc2     = null;
     fc3     = null;
     fcs1    = null;
     fcs2    = null;
     fcs3    = null;
 }
コード例 #2
0
 private void camara2ToolStripMenuItem_Click(object sender, EventArgs e)
 {
     if (fcs2 == null)
     {
         fcs2             = new fSetCam2();
         fcs2.MdiParent   = this;
         fcs2.FormClosed += new FormClosedEventHandler(CloseForm);
         fcs2.Show();
     }
     else
     {
         fcs2.Activate();
     }
 }
コード例 #3
0
ファイル: fCam2.cs プロジェクト: gitmariscope/v3mariscopecc
        private void button2_Click(object sender, EventArgs e)
        {
            fSetCam2 f = new fSetCam2();

            f.Show();
        }