gpt4 book ai didi

wpf - Windows Phone 8 Dispatcher.BeginInvoke 无法异步工作

转载 作者:行者123 更新时间:2023-12-03 12:56:13 25 4
gpt4 key购买 nike

我是异步编程和 WP8 的新手,这是我的第一个应用程序,但 Dispatcher.BeginInvoke(..)

在 View 类后面的代码中,我试图在第二个选项卡的 Pivot scree 异步中加载数据。

这是我现在拥有的:

public partial class ReminderPivot : PhoneApplicationPage
{
#region Reminder Members
private ReminderViewModel _model;
private IRepository _repository;
#endregion Reminder Members

#region Constructors
public ReminderPivot()
{
InitializeComponent();
_model = new ReminderViewModel();
_repository = new LocalStorageRepository();

LoadData();
LoadAsyncData();

this.DataContext = _model;

}
#endregion Constructors

public void LoadData()
{
IEnumerable<Reminder> activeList = _repository.GetRemindersByStatusId(2);
if (activeList != null)
{
foreach (var reminder in activeList)
{
_model.ActiveReminders.Add(reminder);
}
}
}
public void LoadAsyncData()
{
Action action = () =>
{
Thread.Sleep(5000);

IEnumerable<Reminder> inactiveList = _repository.GetRemindersByStatusId(3);
if (inactiveList != null)
{
_model.InctiveReminders = new System.Collections.ObjectModel.ObservableCollection<Reminder>(inactiveList);
}
};

Dispatcher.BeginInvoke(action);
}

问题是这仍然阻塞了我的 UI 线程。我在这里想念什么?

编辑 :
这个想法是将数据异步加载到 ViewModel ObservableCollection 中,它是 XAML 中的 ModelBinded。

如果我尝试使用 Task.Factory(...) 等在另一个线程上进行异步调用,那么这会崩溃,因为我正在从另一个线程而不是 UI 线程更改绑定(bind)。

最佳答案

在@PedroLamas 的建议之后,我让它工作,不确定这是最好的方式还是最优雅的方式,但它完成了工作。

我使用 Task.Factory 在另一个线程上完成调用需要时间并使其可等待,最后只需使用 Dispatcher 更新 UI。

public async void LoadAsyncDataWithTask()
{
IEnumerable<Reminder> inactiveList = null;
Action action = () =>
{
Thread.Sleep(2000);
inactiveList = _repository.GetRemindersByStatusId(2);
};

await Task.Factory.StartNew(action);

Action action2 = () =>
{
if (inactiveList != null)
{
foreach(var item in inactiveList)
{
_model.InctiveReminders.Add(item);
}
}
};

Dispatcher.BeginInvoke(action2);

}

关于wpf - Windows Phone 8 Dispatcher.BeginInvoke 无法异步工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15165043/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com