【发布时间】:2014-03-14 10:42:04
【问题描述】:
我开发了一个示例 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);
}
}
}
当用户点击按钮时:
- 创建并显示一个窗口 R1
- 创建并显示一个窗口 R2
- R2 窗口已关闭
我做了以下动作:
- 我已经启动了应用程序。操作后截取的屏幕截图:
- 我点击了按钮。显示 R1 窗口。操作后截取的屏幕截图:
- 我已关闭 R1 窗口。主窗口已自动置于后台。操作后截取的屏幕截图:
有人可以解释一下为什么主窗口自动进入后台以及如何避免它? 提前感谢您的帮助
【问题讨论】:
-
尝试设置
childWindow.Owner = Application.Current.MainWindow;。