Ejemplo n.º 1
0
 private void pictureBox4_Click(object sender, EventArgs e)
 {
     LecturesForm fr2 = new LecturesForm("Bellman-Ford");
     fr2.MdiParent = ((Form1)this.f.FindForm()).g();
     fr2.Show();
 }
Ejemplo n.º 2
0
 private void pictureBox5_Click(object sender, EventArgs e)
 {
     LecturesForm fr2 = new LecturesForm("Floyd-Warshall");
     fr2.MdiParent = ((Form1)this.f.FindForm()).g();
     fr2.Show();
 }
Ejemplo n.º 3
0
 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();
 }