private IAsyncOperation<ContentDialogResult> _Task = null;
private ContentDialog _message = null;
_message = new ContentDialog()
{
Content = "Hello",
PrimaryButtonText = "EXIT",
IsPrimaryButtonEnabled = true,
};
_message.PrimaryButtonClick += message_PrimaryButtonClick;
_Task = _message.ShowAsync();
Here I have created a Task for content Dialog, so that I can close the ContenDialog explicitly from code.
How can I prevent dialog from closing when Home key is pressed and relaunched