将MdiChild带到前面(使用WPF.MDI)

时间:2015-09-29 03:43:04

标签: c# wpf mdichild

我正在尝试在WPF应用程序上制作MdiForm。但是我不知道怎么把前面的选定形式带到前面。在VB6中我经常使用

FrmName.ZOrder

我可以在WPF上使用任何相似之处吗?

无论如何这是我的代码:

using WPF.MDI;
foreach (MdiChild c in mdiMain.Children)
{
    if (c.Title == "Setup Customer")
    {
        c.BringToFront();    //I'm having trouble here
        return;
    }
}

1 个答案:

答案 0 :(得分:0)

试试这个:

foreach (MdiChild c in mdiMain.Children)
{
    if (c.Title == "Setup Customer")
    {
        c.Focus();    //TRY THIS
        return;
    }
}

如果符合您的需要,请不要忘记将其标记为答案