关闭子窗口后WPF主窗口置于后台

izkcnapc  于 2023-10-22  发布在  其他
关注(0)|答案(2)|浏览(107)

我已经开发了一个示例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
1.创建并显示窗口R2

  1. R2窗口关闭
    我做了以下几个动作:
  • 我已经启动了应用程序。动作后截图:

  • 我已经按下了按钮。显示R1窗口。动作后截图:

  • 我已经关闭了R1窗口。主窗口已自动置于后台。动作后截图:

有人能解释一下为什么主窗口会自动放在后台,以及如何避免它吗?提前感谢你的帮助

qgelzfjb

qgelzfjb1#

不能告诉你为什么它被发送到后台,但保持它在前台和焦点的方法是让它成为子窗口的所有者,并在子窗口关闭时调用父窗口的Window.Focus()方法。

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

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

cdmah0mi2#

在子窗口中设置Owner将防止用户将父窗口带到前台(父窗口可以获得焦点,但当两者相交时,子窗口不会位于父窗口后面)。
如果你想把主窗口的前景时,一些窗口越来越关闭,你可以在一个地方这样做

private void ChildWindow_OnClosed(object sender, WindowClosedEventArgs e)
{
    Application.Current.MainWindow?.Activate(); // Or Focus()
}

相关问题