How can I call an aspx page from a SilverLight application, so that it opens in as a modal dialog and it blocks interaction with the SL application until the dialog is closed?
Thanks
How can I call an aspx page from a SilverLight application, so that it opens in as a modal dialog and it blocks interaction with the SL application until the dialog is closed?
Thanks
You can use the ChildWindow control and set its content to a WebBrowser control pointing to your page's url but it will work in OOB mode only
I would use the Html bridge to call a javascript that opens a new window (a "fake window" like you see in many image galleries these days). You could also add a layer on top of your silverlight content to disable interaction (for example with a grid that block any mouse click). Also with a javascript you can again tell your silverlight app when the "window" is closed.
This will not work OOB of course.