导航期间RaiseCanExecuteChanged COM异常?

时间:2015-09-16 19:33:59

标签: c# windows-runtime async-await mvvm-light win-universal-app

更新

上传的示例项目:https://github.com/subt13/BugSamples

我已经重现了在使用MVVMLight框架的Windows 10 UAP应用程序中发生的错误。

我在导航期间收到以下错误,当CPU处于高负载(~20-25%)且页面重重且#34; (大图像,大量控件等等)

  

在   System.Runtime.InteropServices.WindowsRuntime.ICommandAdapterHelpers<> c__DisplayClass2.b__3(对象   发件人,EventArgs e)在System.EventHandler.Invoke(对象发送者,   EventArgs e)at   GalaSoft.MvvmLight.Command.RelayCommand.RaiseCanExecuteChanged()at   RaiseExecuteChangeRepo.ViewModel.MainViewModel.d__17.MoveNext()

在示例中,错误发生在RaiseCanExecuteChanged();

    private async void ExecuteLoadDataCommandAsync()
    {
        // cause the app to slow done.
        var data = await Task.Run(() => GetData()); 

        if (data != null)
        {
            this.Data.Clear();

            foreach (var item in data)
            {
                this.Data.Add(new AnotherVM(item));
            }
        }

        // have the select job command rerun its condition
        this.SelectCommand.RaiseCanExecuteChanged();
    }

    // slow down the page
    public List<DataItem> GetData()
    {
        var myList = new List<DataItem>();
        for (int i = 0; i < 100000; ++i)
        {
            myList.Add(new DataItem("Welcome to MVVM Light"));

        }

        return myList;
    }

除了与ExecuteLoadDataCommandAsync()相关联的命令被调用以加载数据之外,导航期间没有发生任何特殊情况。

<Core:EventTriggerBehavior EventName="Loaded">
    <Core:InvokeCommandAction Command="{Binding LoadDataCommand}">
   </Core:InvokeCommandAction>
</Core:EventTriggerBehavior>

要重现,只需从一个页面快速切换到另一个页面几秒钟,然后等待。不久之后,将会引发异常。

1 个答案:

答案 0 :(得分:1)

我最后通过在后面的代码中添加以下事件来修复我的问题。

protected override void OnNavigatedFrom(NavigationEventArgs e)
{
    this.DataContext = null;
    base.OnNavigatedFrom(e);
}