I've got a strange behavior when showing a ContentDialog
. When the dialog is on screen and I drag the StatusBar down, the dialog disappears.
private ContentDialog _connectivityDialog = new ContentDialog { IsPrimaryButtonEnabled = false, IsSecondaryButtonEnabled = false, Title = "Test"};
Somewhere I just call _connectivityDialog.ShowAsync();
I made a simple project to reprduce this behavior: https://www.dropbox.com/sh/0a6ad5xtrzii7sx/AADnbF9TGpfJnV9xnVG4FQMJa?dl=0
Any idea why this happens?