Ticket Q537413
Visible to All Users

Create tab page from another form

created 11 years ago

Hi,

I have main form with Tab control. I opened forms inside this tab by creating new tab page and then remove it when close the form.
I tried to call this function from opened form by double click on the grid row that will call open tab page from another form.
there is no errors but tab page is not created or shown even i trace the code.

private void gridView1_DoubleClick(object sender, EventArgs e) { GridView view = (GridView)sender; Point pt = view.GridControl.PointToClient(Control.MousePosition); GridHitInfo info = view.CalcHitInfo(pt); if (info.InRow || info.InRowCell) { Main _Main = new Main(); _Main.OpenForm("Development.Modules"); } }

Open form fn:
f1 = new About();
f1.TopLevel = false; XtraTabPage tbp = new XtraTabPage(); this.xtraTabControl1.TabPages.Add(tbp); this.xtraTabControl1.SelectedTabPage = tbp; tbp.Text = f1.Text; tbp.Controls.Add(f1); f1.WindowState = FormWindowState.Maximized; f1.Show();

Show previous comments (2)
MA MA
Mustafa Abushuhada 11 years ago

    Any Updates?

    DevExpress Support Team 11 years ago

      Hello,
      I have tried to reproduce this issue but without success. I have attached a video and a sample project. Please check it and modify your project to illustrate your scenario.
      I am looking forward to your response.

      MA MA
      Mustafa Abushuhada 11 years ago

        thnx but again this is not exactly what i need.
        i have main form called "Main"
        this main form contains tab called xtra"TabControl1"
        from this main form i open form inside this tab called "ObjectForm"
        in this ObjectForm, i need to call another form and open it inside the tab. the new opened form called "ObjectFormDetails"
        ***************** so, its chid form inside the tab that will call another child form opened in the same tab"
        this is my code:
        Main TabForm = new Main();
        ObjectFormDetails Fr = new ObjectFormDetails();
        Fr.TopLevel = false;
        XtraTabPage tbp = new XtraTabPage();
        TabForm.xtraTabControl1.TabPages.Add(tbp);
        TabForm.xtraTabControl1.SelectedTabPage = tbp;
        tbp.Text = Fr.Text;
        tbp.Controls.Add(Fr);
        Fr.WindowState = FormWindowState.Maximized;
        Fr.Show();

        Answers approved by DevExpress Support

        created 11 years ago (modified 11 years ago)

        Hello,
        As far as I understand, you need to manage tab pages from the form that is contained in one of tab pages. I have created a sample project to illustrate how to accomplish this task. Please check it and let us know whether or not it meets your requirements.
        I am looking forward to your response.

          Comments (2)
          MA MA
          Mustafa Abushuhada 11 years ago

            thanks but all of this can be solved with one line :)
            just pass the tab name to the class and call it from the child form.

            DevExpress Support Team 11 years ago

              I am glad to hear that you resolved the issue. Please feel free contact us in the future.

              Disclaimer: The information provided on DevExpress.com and affiliated web properties (including the DevExpress Support Center) is provided "as is" without warranty of any kind. Developer Express Inc disclaims all warranties, either express or implied, including the warranties of merchantability and fitness for a particular purpose. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.

              Confidential Information: Developer Express Inc does not wish to receive, will not act to procure, nor will it solicit, confidential or proprietary materials and information from you through the DevExpress Support Center or its web properties. Any and all materials or information divulged during chats, email communications, online discussions, Support Center tickets, or made available to Developer Express Inc in any manner will be deemed NOT to be confidential by Developer Express Inc. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.