主窗口中的WPF窗口

时间:2012-10-03 14:14:34

标签: c# wpf

我的WPF窗口很少。

当我想打开一个新窗口时,我将关闭当前窗口并加载一个新窗口:

ProductMain productMain= new ProductMain();
productMain.Show();
this.Close(); 

我知道你可以将用户控制放到窗口中。

我可以在主窗口中加载窗口吗?

谢谢。

1 个答案:

答案 0 :(得分:2)

您可以通过设置Window的所有者属性来执行此类操作。要使用主窗口:

Application.Current.MainWindow

之后,您可以设置ProductMain窗口的owner

ProductMain productMain= new ProductMain();
productMain.Owner = Application.Current.MainWindow;
productMain.Show();