Exemplo n.º 1
0
        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
        }
Exemplo n.º 2
0
        private void openRectangularChildToolStripMenuItem_Click(object sender, EventArgs e)
        {
            RectangularChild rectangleChild = new RectangularChild(recHeight, recRatio); //Creating new Rectangular Child

            rectangleChild.Show();                                                       //Displaying the Rectangular Child
        }