在MDI应用程序中的父窗体中心打开模态窗口

时间:2011-06-14 08:24:57

标签: c# winforms mdi

我正在使用Winform应用程序,并希望在父窗体的中心打开模式窗体。在Winform应用程序中有:

  1. MDI表格(作为启动表格打开并充当所有人的容器)
  2. 点击MDI表单的菜单项之一 - 打开MDI子表单
  3. 点击MDI上的按钮之一在步骤2中打开的孩子 - 打开一个模态表单 - 我们需要在MDI子表单中心打开(在步骤2中打开)
  4. 因此,在中心打开模态形式我所做的第一个明显的解决方案是

    TestModalForm obj = new TestModalForm()
    obj.StartPosition = FormStartPosition.CenterParent;
    obj.showdialog(this);
    

    但上面的解决方案不起作用,因为模态形式总是将MDI表格视为其父级。所以我为第二个解决方案做准备:我在Form Load of Modal窗口中编写方法将它放在中心,如下所示:

            private void MakeWinInCenter()
            {
                if (this.Owner != null)
                {
                    Form objParent = null;
                    int TopbarHeight = 0;
                    if (this.Owner.IsMdiContainer && this.Owner.ActiveMdiChild != null)
                    {
                        objParent = this.Owner.ActiveMdiChild;
                        TopbarHeight = GetTopbarHeight(this.Owner);
                    }
                    else
                        objParent = this.Owner;
    
                    Point p = new Point((objParent.Width - this.Width) / 2, (objParent.Height - this.Height) / 2);
                    p.X += objParent.Location.X;
                    p.Y += TopbarHeight + objParent.Location.Y;
                    this.Location = p;
                }
                else
                {
                  //If owner is Null then, we have reference of MDIForm in Startup Class - use that ref and opens win in center of MDI
                    if (Startup.MDIObj != null)
                    {
                        this.Left = Convert.ToInt32((Startup.MDIObj.Width - this.Width) / 2);
                        this.Top = Convert.ToInt32((Startup.MDIObj.Height - this.Height) / 2);
                    }
                }
    
            }
    
            private int GetTopbarHeight(Form MDIForm)
            {
                int TopbarHeight = 0;
                MdiClient objMDIClient = null;
                foreach (Control ctl in MDIForm.Controls)
                {
                    if (ctl is MdiClient)
                    {
                        objMDIClient = ctl as MdiClient;
                        break;
                    }
                }
                if (objMDIClient != null)
                {
                    TopbarHeight = MDIForm.Height - objMDIClient.Size.Height;
                }
                return TopbarHeight;
            }
    

    当以最大化形式打开MDI表单时,上述解决方案非常有效。但是,当我们通过调整MDI表单(即不是最大化形式)或将MDI表单移动到其他屏幕进行检查时 - 如果是多个屏幕,则上述解决方案无效并且不会在MDI子窗体中心打开模态窗体< / p>

    同时查看了this Question,但它对我的问题毫无帮助。

    任何人都可以有任何建议或解决方案来解决问题。

    由于

5 个答案:

答案 0 :(得分:1)

试试这个:

TestModalForm.showdialog(this.MdiParent);

答案 1 :(得分:0)

你的方法似乎过于复杂。为什么不这样做呢?

// All code goes in your MDI Child form

// Create the modal form
TestModalForm obj = new TestModalForm();

// Find center point of MDI Parent form
Point centerPoint = new Point(this.MdiParent.Top + this.MdiParent.Height / 2,
                              this.MdiParent.Left + this.MdiParent.Width / 2);
// Set the location and show the modal form
obj.StartPosition = FormStartPosition.Manual
obj.Location = centerPoint;
obj.ShowDialog(this);

答案 2 :(得分:0)

我认为你应该这样做

//for modal form set its strat position to centerparent like this

**this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;**

// this will open the modalform in center of parent form

答案 3 :(得分:0)

在MDI表单中,for(i=8, i < 101, i++) { # apply factor() to each column from 8 to 100 factor( MyDF[,i] ) } 无法按预期工作,请参阅文档MSDN,建议始终使用center to parent,但毕竟我使用了解决方法这是关于位置定位,所以我为center to screen创建了一个覆盖方法,并在子表单center to parent上使用它,这样每次加载子进程时它都以父进程为中心:

load event

答案 4 :(得分:0)

要在父级为 MDI Child 时使用其父级中心的ShowDialog显示表单,您可以使用以下代码

代码应该从 MDI Child 表单中的按钮运行,并在 MDI Child 表单的中心显示另一个表单作为模式对话框:

var dialog = new Form(); //The form which you want to show as dialog
//this.Parent point to the MdiClient control which is the container of this
var p = this.Parent.PointToScreen(this.Location); 
p.Offset((this.Width - dialog.Width)/2 , (this.Height - dialog.Height)/2);
dialog.StartPosition = FormStartPosition.Manual;
dialog.DesktopLocation = p;
dialog.ShowDialog();

在上面的代码中,由于当前表单是MDI Child,因此this.Parent指向MdiClient控件,它是MDI子表单的容器,因此我们可以使用其PointToScreen方法传递MDI子(这个)的位置来获取MDI子的屏幕位置。然后,如果使用MDI子项与对话框宽度和高度之间的差异的一半来偏移该位置,并将对话框的StartPosition设置为FormStartPosition.Manual并使用ShowDialog显示它。