private void btAgregarVertice_Click(object sender, EventArgs e) { string vertice = txAgregarVertice.Text.Trim(); if (vertice == string.Empty) { MessageBox.Show("Debe ingresar el nombre del vértice."); } else if (MiGrafo.ExisteVertice(vertice)) { MessageBox.Show("El vértice ya existe."); } else { _agregandoNodo = true; _nombreNodo = vertice; pbGrafo.Focus(); pbGrafo.Cursor = Cursors.Hand; HabilitacionElementos(false); MostrarIndicacion("Haga clic en la posición dónde desea ubicar el vértice."); } }