I\'ve got a c# Windows Store app. I\'m trying to launch a MessageDialog when one of the command buttons inside another MessageDialog is clicked. Th
MessageDialog
You must mark your lambda expression as async, like so:
async
messageDialog.Commands.Add(new UICommand("No", async (command) => { await showSaveDialog(); }));