I'm running a Silverlight 4 app with elevated trust out of browser and cannot rely on the DOM or host web page to shut down Silverlight. There is no App.Current.Shutdown() method. How do I shut down a Silverlight app programmatically?

link|improve this question

feedback

1 Answer

up vote 4 down vote accepted

try App.Current.MainWindow.Close();

link|improve this answer
So obvious, yet so unintuitive! :) – kindohm Apr 21 '11 at 18:13
1  
Looks like this is only working with an out of browser application. – Nicolas GUILLAUME Jan 9 at 18:21
1  
Since this question is only about OOB apps, this answer is entirely appropriate. – kindohm Feb 3 at 18:39
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.