is it possible to quit my UWP-app and start the core app of Windows IoT?
Right now I use the following code:
private void FlyoutExit_Click(object sender, RoutedEventArgs e)
{
Application.Current.Exit();
}
This does not have the effect I want. When I click the button, my program just restarts. It doesn't exit.
Greetings
CoreApplication.Exit()
? – Sasan