I've begun tinkering with making windows 8 apps And I want to make an exit button.
The problem is that Environment.Exit()
and this.Close()
that I'd use in winforms isn't in scope here.
anyone know how to close the app Programmatically?
Application.Current.Exit();
But closing a Metro app is not recommended. It is usually suspended.