I have problems with showing a MessageDialog. I am using Windows IoT core (should be the newest version) running on a Raspberry Pi 3.
In the Debug version everything works fine and the MessageDialog shows up. When I deploy the Release Version the MessageDialog does not show up and the program runs although it should wait for an user interaction.
Are there any settings which have to be done?
var messageDialog = new Windows.UI.Popups.MessageDialog(Message, Title);
await messageDialog.ShowAsync();
On some messages I have added a MessageDialog command like:
messageDialog.Commands.Add(new UICommand("commandtext", new UICommandInvokedHandler(this.CommandInvokedHandler)));