MessageDialog в Windows 8 xaml
Мой код:
MessageDialog msg = new MessageDialog("Are you sure to cancel the booking?", "Confirmation");
msg.Commands.Add(new UICommand("Confirm", new UICommandInvokedHandler(CommandHandler)));
msg.Commands.Add(new UICommand("Cancel", new UICommandInvokedHandler(CommandHandler)));
msg.DefaultCommandIndex = 1;
msg.CancelCommandIndex = 1;
await msg.ShowAsync();
private async void CommandHandler(IUICommand command)
{
var commandLabel = command.Label;
switch (commandLabel)
{
case "Confirm":
CancelBookingTickets();
break;
case "Cancel":
break;
}
}
protected async void CancelBookingTickets()
{
MessageDialog msg1 = new MessageDialog("The cancellation process is complete", "Complete");
await msg1.ShowAsync();
}
Я пытаюсь использовать вложенное поле MessageDialog в приложении Windows 8 xaml, но когда я достигаю msg1.ShowAsync()
, это вызывает исключение, говорящее "Доступ запрещен".
Кто-нибудь может мне помочь с этой проблемой?
1 ответ
Вы столкнулись с проблемой множественного MessageDialog
однажды.
Как разрешить несколько всплывающих окон одновременно в WinRT?