public frmArbolesBinarios() { InitializeComponent(); pbArbol.SizeMode = PictureBoxSizeMode.StretchImage; miArbol = new ABB <int, string>(); MostrarArbol(); }
private void btnCrearAbb_Click(object sender, EventArgs e) { try { miArbol = new ABB <int, string>(); MostrarArbol(); } catch (Exception ex) { MostrarError(ex); } }