0

我正在尝试更新我的页面元素,但我的程序在更新期间崩溃了一些。/*

 MainPage::MainPage()
    {
        InitializeComponent();
        ApplicationData::Current->DataChanged += ref new TypedEventHandler<ApplicationData^, Object^>
        (this, &MainPage::DataChangedHandler);
    }

    void MainPage::DataChangedHandler(Windows::Storage::ApplicationData^ appData, Object^)
    {
        this->UpdateUIElements();
    }

*/

4

1 回答 1

0

问题是您需要在 ui 线程中异步运行更新。

void MainPage::DataChangedHandler(Windows::Storage::ApplicationData^ appData, Object^)
{
    Dispatcher->RunAsync(CoreDispatcherPriority::Normal, ref new DispatchedHandler(
        [this]()
        {
        UpdateUIElements();
        }));
}
于 2013-09-22T18:04:06.967 回答