public void ButtonClick(object sender, EventArgs e) { inputCountVertexForm = new InputCountVertexForm(startForm); startForm.Hide(); inputCountVertexForm.ShowDialog(); startForm.Close(); }
public void ButtonClick(object sender, EventArgs e) { if (ofd.ShowDialog() == DialogResult.OK) { loadGraph = deserializeGraph.LoadGraph(ofd.FileName); matrix = converter.ConvertToListListCellBox(loadGraph); adjacencyList = converter.ConvertToAdjacencyList(matrix); DrawingLoadedEdges(matrix); DrawingLoadedVertexs(matrix); inputCountVertexForm = new InputCountVertexForm(startForm); drawForm = new StartForm.DrawForm(vertexDraws, edgeDraws, matrix, startForm, inputCountVertexForm, matrixGraph, adjacencyList); startForm.Hide(); drawForm.ShowDialog(); startForm.Close(); } }