Ejemplo n.º 1
0
        //private void poveziSaProjektomToolStripMenuItem_Click(object sender, EventArgs e)
        //{
        //    PoveziSaProjektom newMDIChild = new PoveziSaProjektom();
        //    newMDIChild.MdiParent = this;
        //    newMDIChild.Show();
        //}

        private void dodajLiteraturuToolStripMenuItem_Click(object sender, EventArgs e)
        {
            FormDodajLiteraturu newMDIChild = new FormDodajLiteraturu();

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

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