我已经开发了一个示例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
- R2窗口关闭
我做了以下几个动作:
- 我已经启动了应用程序。动作后截图:
- 我已经按下了按钮。显示R1窗口。动作后截图:
- 我已经关闭了R1窗口。主窗口已自动置于后台。动作后截图:
有人能解释一下为什么主窗口会自动放在后台,以及如何避免它吗?提前感谢你的帮助
2条答案
按热度按时间qgelzfjb1#
不能告诉你为什么它被发送到后台,但保持它在前台和焦点的方法是让它成为子窗口的所有者,并在子窗口关闭时调用父窗口的
Window.Focus()
方法。cdmah0mi2#
在子窗口中设置
Owner
将防止用户将父窗口带到前台(父窗口可以获得焦点,但当两者相交时,子窗口不会位于父窗口后面)。如果你想把主窗口的前景时,一些窗口越来越关闭,你可以在一个地方这样做