标签: c# wpf modal-dialog xbap
我有一个XBAP应用程序,它在页面中包含以下代码:
Person newPerson = new Person(); PersonWindow personWindow = new PersonWindow(newPerson); personWindow.ShowDialog();
从XBAP页面调用此代码时,结果窗口的行为不像模态窗口。
如何更改为没有大量更改的行为?
答案 0 :(得分:0)
看来,您必须通过禁用所有其他窗口控件来自行实现“模态”。 Here goes the discussion of that