private void heavyToolStripMenuItem_Click(object sender, EventArgs e) { ChildForm child = new ChildForm("Heavy!", "heavy_sandvich", 258, 243); child.MdiParent = this; child.Show(); }
private void daffyToolStripMenuItem_Click(object sender, EventArgs e) { ChildForm child = new ChildForm("Daffy!", "daffy_robinhood", 500, 361); child.MdiParent = this; child.Show(); }
private void emptyToolStripMenuItem_Click(object sender, EventArgs e) { ChildForm child = new ChildForm("Here is the void()"); child.MdiParent = this; child.Show(); }
private void catsToolStripMenuItem_Click(object sender, EventArgs e) { ChildForm child = new ChildForm("Ping Pong!", "cats_pingpong", 490, 368); child.MdiParent = this; child.Show(); }