private void openRectangularChildToolStripMenuItem_Click(object sender, EventArgs e) { RectangularChild rectangleChild = new RectangularChild(recHeight, recRatio); //Creating new Rectangular Child rectangleChild.Owner = this; //Making Rectangle form owned rectangleChild.MdiParent = this; rectangleChild.Show(); //Displaying the Rectangular Child }
private void openRectangularChildToolStripMenuItem_Click(object sender, EventArgs e) { RectangularChild rectangleChild = new RectangularChild(recHeight, recRatio); //Creating new Rectangular Child rectangleChild.Show(); //Displaying the Rectangular Child }