Esempio n. 1
0
 private void avlButton_Click(object sender, EventArgs e)
 {
     if (avl == null)
     {
         avl             = new AVL_Tree.Form1();
         avl.FormClosed += avlClose;
         avl.Show();
     }
 }
Esempio n. 2
0
 private void avlClose(object sender, EventArgs e)
 {
     avl = null;
 }