我发现了Show.MessageBox()的一个问题。
在我的应用程序中,我在几个地方调用Show.Dialog()来模态显示子窗口。
然后,如果在新子窗口中使用Show.MessageBox(),则消息框将显示在应用程序主窗口的中心。您可以设置一个断点,消息框的所有者也是主窗口。
为了解决这个问题,我用IQuestionDialog做了一个黑客攻击:
[Singleton(typeof(IQuestionDialog))]
public class QuestionDialogViewModel : Caliburn.ShellFramework.Questions.QuestionDialogViewModel
{
public override void AttachView(object view, object context)
{
Window window = view as Window;
if (window != null)
{
Window owner = GetTopWindow();
if (owner != null)
{
window.Owner = owner;
}
}
base.AttachView(view, context);
}
private Window GetTopWindow()
{
//We have to get the next to last window in the list, the MsgBox will be the last
return Application.Current.Windows
.Cast<Window>()
.Reverse()
.Skip(1)
.FirstOrDefault();
}
}
这不适用于所有可能的情况,但适用于我的应用程序。
任何更清洁的方法来解决这个问题?
答案 0 :(得分:1)
最新版本的Caliburn中的DefaultWindowManager没有此问题。