我正在数据网格视图中加载一些数据(1,200,000行),并且App花费了太多时间来加载并且有时冻结。
我不知道如何异步加载它们? (也许有progressBar)。
我可以在这里找到一些帮助吗?
答案 0 :(得分:5)
我有一个应用程序,我正在使用线程执行非常类似的操作。此代码应该在后面的代码运行时一次更新一行数据网格。
using System.Windows.Threading;
private void Run()
{
try
{
var t = new Thread(Read) { IsBackground = true };
t.Start();
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
}
private void Read()
{
foreach (/* whatever you are looping through */)
{
/* I recommend creating a class for the result use that for the
datagrid filling. */
var sr = new ResultClass()
/* do all you code to generate your results */
Dispatcher.BeginInvoke(DispatcherPriority.Normal,
(ThreadStart)(() => dgResults.AddItem(sr)));
}
}
答案 1 :(得分:3)
将数据加载分成更小的块,一次说100到1000行。如果WPF网格数据绑定到您的数据集合,并且该集合是一个可观察的集合(实现INotifyCollectionChanged),WPF将在新数据添加到集合时自动更新显示。
您还应该考虑将虚拟列表控件或网格与分页数据源结合使用,以便仅加载屏幕上当前显示的数据(而不是内存中的120万行数据)。这将为您执行“分块”,并使您能够以极少的内存使用或网络延迟向用户呈现基本上无限量的数据。
查看这篇关于虚拟列表框异步检索数据的SO文章:How do I populate a ListView in virtual mode asynchronously?