C ++ / CLI MDI容器

时间:2016-09-12 12:50:28

标签: visual-studio visual-c++ mdi

父窗体是一个MDI容器,我打开一个名为newMDIChild的新窗体,并将该窗体设置为父窗体的子窗体。我怎样才能在表单FirstMDIChild中打开一个新的表单SecondMDIChild并为表单Parent的子项设置该表单并关闭FirstMDIChild,?我需要使用指针,有人可以解释如何做到这一点。 TY

Parent(void)
    {
        InitializeComponent();
        FirstPage^ newMDIChild = gcnew FirstPage();
        // Set the Parent Form of the Child window.
        newMDIChild->MdiParent = this;
        newMDIChild->MaximizeBox = false;
        // Display the new form.
        newMDIChild->Show();

    }

0 个答案:

没有答案