当我更改我的 wpf 应用程序中显示的所有窗口的所有者时,有时我会遇到异常“显示对话框后无法设置所有者属性”
代码
foreach (Window vAlarmWindow in Application.Current.Windows)
{
if (vAlarmWindow is AlarmWindow && this != vAlarmWindow.Owner && !vAlarmWindow.IsLoaded)
{
vAlarmWindow.Owner = this;
}
}
可能是什么原因?