23

我正在尝试在 Windows 8 中实现重试/取消对话框。该对话框第一次显示正常,但是在单击重试并再次失败时,我在调用 ShowAsync 时收到拒绝访问异常。我不知道为什么,但奇怪的是有时代码可以正常工作,并且在设置断点时我没有遇到异常。这里真的一窍不通

这是代码。

    async void DismissedEventHandler(SplashScreen sender, object e)
    {
        dismissed = true;
        loadFeeds();
    }
    private async void loadFeeds()
    {
        await Dispatcher.RunAsync(CoreDispatcherPriority.Normal, async () =>
        {
            try
            {
                RSSDataSource rssDataSource = (RSSDataSource)App.Current.Resources["RSSDataSource"];
                if (rssDataSource != null)
                {
                    await rssDataSource.DownloadFeeds();
                    await rssDataSource.GetFeedsAsync();
                }

                AdDataSource ads = (AdDataSource)App.Current.Resources["AdDataSource"];

                if (ads != null)
                {
                    await ads.DownloadAds();
                }
                rootFrame.Navigate(typeof(HomePageView));

                Window.Current.Content = rootFrame;
            }
            catch
            {
                ShowError();
            }

        });
    }
    async void ShowError()
    {
        // There was likely a problem initializing
        MessageDialog msg = new MessageDialog(CONNECTION_ERROR_MESSAGE, CONNECTION_ERROR_TITLE);

        // Add buttons and set their command handlers
        msg.Commands.Add(new UICommand(COMMAND_LABEL_RETRY, new UICommandInvokedHandler(this.CommandInvokedHandler)));
        msg.Commands.Add(new UICommand(COMMAND_LABEL_CLOSE, new UICommandInvokedHandler(this.CommandInvokedHandler)));
        // Set the command to be invoked when a user presses 'ESC'
        msg.CancelCommandIndex = 0;

        await msg.ShowAsync();
    }

    /// <summary>
    /// Callback function for the invocation of the dialog commands
    /// </summary>
    /// <param name="command">The command that was invoked</param>
    private void CommandInvokedHandler(IUICommand command)
    {
        string buttonLabel = command.Label;
        if (buttonLabel.Equals(COMMAND_LABEL_RETRY))
        {
            loadFeeds();
        }
        else
        {
            // Close app
            Application.Current.Exit();
        }
    }
4

5 回答 5

25

好的,我找到了一个快速的解决方案,

定义一个 IAsyncOperation 类变量

IAsyncOperation<IUICommand> asyncCommand = null;

并将其设置为 MessageDialog 的 ShowAsync 方法

asyncCommand = msg.ShowAsync();

在重试/重试的命令处理程序中,检查 asyncCommand 是否不为空,并在必要时取消最后一个操作

if(asyncCommand != null)
{
   asyncCommand.Cancel();
}

如果有更好的方法,请告诉我。

于 2012-10-04T09:03:43.917 回答
9

我迟到了,但这里有一种方法,您可以随时等待对话框的结果,并且不必担心连续调用太多:

首先在您的应用程序中定义一个静态变量和方法:

 private static IAsyncOperation<IUICommand> messageDialogCommand = null;
 public async static Task<bool> ShowDialog(MessageDialog dlg) {

    // Close the previous one out
    if (messageDialogCommand != null) {
       messageDialogCommand.Cancel();
       messageDialogCommand = null;
    }

    messageDialogCommand = dlg.ShowAsync();
    await messageDialogCommand;
    return true;
 }

现在,您可以传入任何对话框并始终等待执行。这就是为什么这会返回一个布尔值而不是 void。您不必担心倍数之间的冲突。为什么不让这个方法接受一个字符串呢?由于标题和是/否命令处理程序,您可以分配到您正在使用的特定对话框中。

调用如:

await App.ShowDialog(new MessageDialog("FOO!"));

或者

var dlg = new MessageDialog("FOO?", "BAR?");
dlg.Commands.Add(new UICommand("Yes", new UICommandInvokedHandler(YesHandler)));
dlg.Commands.Add(new UICommand("No", new UICommandInvokedHandler(NoHandler)));
await App.ShowDialog(dlg);
于 2014-03-05T22:38:17.690 回答
3

在 MSDN 论坛上有一个答案,可能对您有所帮助。

http://social.msdn.microsoft.com/Forums/en-US/winappswithhtml5/thread/c2f5ed68-aac7-42d3-bd59-dbf2673dd89b

我遇到了类似的问题,但我的 showAsync 调用在不同线程上的不同函数中,所以我不能在其中删除 done() 我不认为......

于 2012-10-09T20:31:41.400 回答
3

几天前我遇到了同样的问题,我在等待 ShowAsync 之后解决了它,然后再次进行递归调用以打开 MessageDialog。

public async void ShowDlg(){
    Action cmdAction = null;
    var msgDlg = new MessageDialog("Content.", "Title");
    msgDlg.Commands.Add(new UICommand("Retry", (x) => {
    cmdAction = () => ShowDlg();
    }));
    msgDlg.Commands.Add(new UICommand("Cancel", (x) => {
    cmdAction = () => <Action associated with the cancel button>;
    }));
    msgDlg.DefaultCommandIndex = 0;
    msgDlg.CancelCommandIndex = 1;

    await msgDlg.ShowAsync();
    cmdAction.Invoke();
}

希望这有帮助!

于 2013-01-31T21:55:17.613 回答
1

另一种解决方案:

private bool _messageShowing = false;

// ...

if (!_messageShowing)
{
    _messageShowing = true;
    var messageDialog = new MessageDialog("Example");

    // ... "messageDialog" initialization

    Task<IUICommand> showMessageTask =  messageDialog.ShowAsync().AsTask();
    await showMessageTask.ContinueWith((showAsyncResult) =>
        {
            _messageShowing = false;
        });
}
于 2016-03-09T14:35:56.067 回答