关闭子窗口后,WPF主窗口放入后台

时间:2014-02-14 21:44:59

标签: wpf window

我开发了一个WPF项目示例 这是主窗口的代码隐藏:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
using Telerik.Windows.Controls;

namespace MainWindowInBackground
{
    /// <summary>
    /// Interaction logic for MainWindow.xaml
    /// </summary>
    public partial class MainWindow : Window
    {
        public MainWindow()
        {
            InitializeComponent();
        }

        private void Button_Click(object sender, RoutedEventArgs e)
        {
            Window l_hostWindow = new Window()
            {
                Owner = System.Windows.Application.Current.MainWindow,
                WindowStartupLocation = WindowStartupLocation.CenterOwner,
                Content = "Test"
            };

            l_hostWindow.Show();

            Window l_hostWindow2 = new Window()
            {
                Owner = System.Windows.Application.Current.MainWindow,
                WindowStartupLocation = WindowStartupLocation.CenterOwner,
                Content = "Test 2"
            };

            l_hostWindow2.Show();
            l_hostWindow2.Close();

            //MessageBox.Show(this, "MessageBox", "MessageBox", MessageBoxButton.OK, MessageBoxImage.Information, MessageBoxResult.OK);
        }
    }
}

当用户点击按钮时:

  1. 创建并显示窗口R1
  2. 创建并显示窗口R2
  3. R2窗口已关闭
  4. 我做了以下行动:

    • 我已经启动了该应用程序。操作后截图:

    enter image description here

    • 我点击了按钮。显示R1窗口。操作后截图:

    enter image description here

    • 我关闭了R1窗口。主窗口已自动放入后台。操作后截图:

    enter image description here

    有人可以解释一下为什么主窗口已经自动放入后台以及如何避免它? 提前感谢您的帮助

1 个答案:

答案 0 :(得分:5)

无法告诉你为什么它被发送到后台但是将它保持在前台并且专注的方法是使它成为子窗口的所有者并在子窗口时调用父窗口的Window.Focus()方法窗户关闭......

public ChildWindow()
{
    InitializeComponent();
    Owner = Application.Current.MainWindow;
}

private void ChildWindow_OnClosed(object sender, WindowClosedEventArgs e)
{
    if (Owner == null) return;
    Owner.Focus();
}