private void pictureBox4_Click(object sender, EventArgs e) { LecturesForm fr2 = new LecturesForm("Bellman-Ford"); fr2.MdiParent = ((Form1)this.f.FindForm()).g(); fr2.Show(); }
private void pictureBox5_Click(object sender, EventArgs e) { LecturesForm fr2 = new LecturesForm("Floyd-Warshall"); fr2.MdiParent = ((Form1)this.f.FindForm()).g(); fr2.Show(); }
private void pictureBox1_Click(object sender, EventArgs e) { //DijkstraForm fr2 = new DijkstraForm(); LecturesForm fr2 = new LecturesForm("Djikstra"); fr2.MdiParent = ((Form1)this.f.FindForm()).g(); fr2.Show(); }