An UWP app which runs on desktop can be closed from the top X button but it doesn't have any event for it. It is known that on phones and tablets an app should rely on Suspending
event, no matter how it's triggered and then the app should rely on ApplicationExecutionState
.
However, here is a (maybe) common scenario: on phones the Suspending
event suffice and in case a Voip call is going on it will be operated by OS after the app is suspended. On desktop the close button is expected, by user, to completely close the app. So if a call is on going it should be hanged up and certain resources should be released.
How can I know when the user clicked the "close" button if (and only if) the UWP app is running on desktop?
A restricted capability confirmAppClose
was added in Windows 10 version 1703 (build 10.0.15063) in order to provide apps the ability to intercept window closing.
Manifest namespace:
xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities"
Manifest:
<Capabilities>
<Capability Name="internetClient" />
<rescap:Capability Name="confirmAppClose"/>
</Capabilities>
It needs extra approval when submitting to the store. But then will fire the CloseRequested
event on a SystemNavigationManagerPreview instance.
Code:
public MainPage()
{
this.InitializeComponent();
SystemNavigationManagerPreview.GetForCurrentView().CloseRequested += this.OnCloseRequest;
}
private void OnCloseRequest(object sender, SystemNavigationCloseRequestedPreviewEventArgs e)
{
if (!saved) { e.Handled = true; SomePromptFunction(); }
}
You can get a deferral to do a bit of work here (save or prompt), or you can set Handled
to true in order to stop the window from closing (user cancelled prompt).