Ejemplo n.º 1
0
 private void vcr_closed( object sender, EventArgs e )
 {
     vcr = null;
 }
Ejemplo n.º 2
0
 private void VCRM_Click( object sender, EventArgs e )
 {
     if ( vcr == null )
     {
         vcr = new VCR();
         vcr.MdiParent = this;
         vcr.Closed += vcr_closed;
         vcr.Show();
     }
     else
     {
         vcr.Activate();
     }
 }