1

I have a XBAP application which has the following code in a Page:

Person newPerson = new Person();
PersonWindow personWindow = new PersonWindow(newPerson);            
personWindow.ShowDialog();

When this code is invoked from a XBAP page, the resultant window does not behave like a modal window.

How can it be changed to behave like one without a significant amount of changes?

4

1 回答 1

0

看来,您必须通过禁用所有其他窗口控件来自行实现“模态”。这里是关于那个的讨论

于 2009-11-02T14:29:11.003 回答