Messageダイアログの表示
MessageDialog msg = new MessageDialog("値が重複してます", "Title");
await msg.ShowAsync();
Yes,Noボタンの追加
var msg = new MessageDialog("変更しますか?", "Title");
msg.Commands.Add(new UICommand("Yes"));
msg.Commands.Add(new UICommand("No"));
msg.DefaultCommandIndex = 0;
var res = await msg.ShowAsync();
if (res.Label == "Yes")
{
Debug.WriteLine("Yes:Edit");
}
else
{
Debug.WriteLine("No:Do not");
}