예제 #1
0
        private void MnuItemBooksMng_Click(object sender, EventArgs e)
        {
            BooksMngForm books = new BooksMngForm();
            string       title = "도서 관리";

            ShowFormControl(books, title);

            /*books.MdiParent = this;
             * books.Text = "도서 관리";
             * books.Show();
             * books.WindowState = FormWindowState.Maximized;*/
        }
예제 #2
0
        private void MnuItemBooksMng_Click(object sender, EventArgs e)
        {
            BooksMngForm form = new BooksMngForm();

            ShowFormControl(form, "도서관리");
        }