如何通过XAML将窗口所有者设置为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>
那不起作用。
答案 0 :(得分:2)
Window.Owner
无法工作,因为&#34; System.Windows.Application.Current.MainWindow&#34;只是一个字符串
"{Binding Path=MainWindow, Source={x:Static Application.Current}}"
不是依赖属性,因此绑定到静态源(App
)也不会起作用
我像这样修改了namespace WpfDemos
{
public partial class App : Application
{
public static Window CurrentMainWindow
{
get { return Current.MainWindow; }
}
}
}
类:
{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}"
扩展名引用该属性:
{{1}}
所以有可能,但为什么呢?