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