NotificationWindow in browser silverlight
is there a way to have NotificationWindow in browser? I 开发者_如何转开发need NotificationWindow in browser not in "out of browser".
Like AnthonyWJones said, in Silverlight 4 the NotificationWindow
is restricted to Out Of Browser use.
However with Silverlight 5, apps will be able to run in the browser with elevated permission (under certain conditions).
That means that the NotificationWindow
will work in the browser.
More info on Silverlight 5 in-browser trusted apps here
Silverlight exclusively limits NotificationWindow
to OOB use. You will need to find something else outside of Silverlight to acheive the requirement.
As guys said, there is no NotificationWindow
in browser for Silverlight 4. For solving this issue you can choose different ways: first is just to wait for release of SL 5 or on the other hand - implement your own MessageBox
with desired functionality. Regarding second one I can help with some code samples.
精彩评论