We have a XBAP application which has the following code in a Page:
Person newPerson = new Person();
PersonWindow personWindow = new PersonWindow(newPerson);
personWindow.ShowDialog();
Now this code is invoked from a XBAP page, the resultant window does not behave like Modal window, is there any way to achieve this without significant amount of changes?