Windows 8中的MessageDialog xaml

时间:2013-04-18 06:24:38

标签: xaml windows-8 messagedialog

我的代码:

            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();            
    }

我正在尝试在我的Windows 8 xaml应用程序中使用嵌套的MessageDialog框,但是当我到达msg1.ShowAsync()时,它会触发一个异常,说“访问被拒绝”。

有人可以帮我解决这个问题吗?

1 个答案:

答案 0 :(得分:1)

您一次面临多个MessageDialog的问题。

How to allow for multiple popups at once in WinRT?