如何在 WPF 中通过 XAML 将 window 的所有者设置为 MainWindow?

How to set window's owner to MainWindow through XAML in WPF?

如何通过 XAML 将 window 的所有者设置为 Application.Current.MainWindow? 到目前为止我试过这个:

<Window x:Class="ModalWindow.CustomModalWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
        xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
        mc:Ignorable="d"
        Owner="System.Windows.Application.Current.MainWindow">
<!--Some XAML code-->
</Window>

那没用。

Owner="System.Windows.Application.Current.MainWindow" 不会工作,因为 "System.Windows.Application.Current.MainWindow" 只是一个字符串

Window.Owner 不是依赖项 属性,因此绑定到静态源 ("{Binding Path=MainWindow, Source={x:Static Application.Current}}") 也不起作用

我修改了Appclass这样:

namespace WpfDemos
{
    public partial class App : Application
    {
        public static Window CurrentMainWindow
        {
            get { return Current.MainWindow; }
        }
    }
}

然后在我的 window 中通过 {x:Static} 扩展引用 属性:

<Window x:Class="WpfDemos.Window1"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:wpfDemos="clr-namespace:WpfDemos"
        Owner="{x:Static wpfDemos:App.CurrentMainWindow}"

所以这是可能的,但为什么呢?