How do I close an out of the browser application in silverlight programatically. I want to bring in the same functionality as the control box close, from the code based on some condition. How do I acheive it?
Asked
Active
Viewed 1,867 times
1 Answers
11
As simple as that :)
App.Current.MainWindow.Close();

danbord
- 3,605
- 3
- 33
- 49
-
note that this requires the application to be trusted – Recep Apr 21 '16 at 08:35