Ejemplo n.º 1
0
 private void button1_Click(object sender, EventArgs e)
 {
     if (control == null)
     {
         control = new BeeControl() { Location = new Point(100, 100) };
         Controls.Add(control);
     }
     else
     {
         using (control)
         {
             Controls.Remove(control);
         }
         control = null;
     }
 }
Ejemplo n.º 2
0
 private void button1_Click(object sender, EventArgs e)
 {
     if (control == null)
     {
         control = new BeeControl()
         {
             Location = new Point(100, 100)
         };
         Controls.Add(control);
     }
     else
     {
         using (control)
         {
             Controls.Remove(control);
         }
         control = null;
     }
 }