Ejemplo n.º 1
0
        private void prikaziIIzmeniToolStripMenuItem8_Click(object sender, EventArgs e)
        {
            FormIzvestaj newMDIChild = new FormIzvestaj();

            newMDIChild.MdiParent = this;
            newMDIChild.Show();
        }
Ejemplo n.º 2
0
        private void prikaziIIzmeniToolStripMenuItem8_Click(object sender, EventArgs e)
        {
            FormIzvestaj newMDIChild = new FormIzvestaj();

            // Set the Parent Form of the Child window.
            newMDIChild.MdiParent = this;
            // Display the new form.
            newMDIChild.Show();
        }