示例#1
0
文件: MDI.cs 项目: jasonml10/KC
        private void displayAllMembersToolStripMenuItem_Click(object sender, EventArgs e)
        {
            SearchDGV searchDGV = new SearchDGV();

            searchDGV.MdiParent = this;
            searchDGV.Show();
        }
示例#2
0
文件: MDI.cs 项目: jasonml10/KC
        private void dsiplayOnDataGridViewToolStripMenuItem_Click(object sender, EventArgs e)
        {
            SearchDGV sgdv = new SearchDGV();

            sgdv.MdiParent = this; // set the current window as parent
            sgdv.Show();
        }