在 ListView 中加载并显示所有项目后会触发哪个事件?

Which event fires after all items are loaded and shown in a ListView?

在 WPF ListView 中加载并显示所有项目后会触发哪个事件? 我尝试优化在 ListView 中显示大量项目。 ListView 使用以下代码填充项目:

List<Artist> selectedArtistsList;
//Code to fill selectedArtistsList with about 6,000 items not shown here
CollectionViewSource selection1ViewSource = ((CollectionViewSource)(this.FindResource("selection1Source")));
Stopwatch stopWatch1 = new Stopwatch();
stopWatch1.Start();
selection1ViewSource.Source = selectedArtistsList;
stopWatch1.Stop();
Debug.Print("Time used: {0}ms", stopWatch1.ElapsedMilliseconds.ToString());

当我运行这段代码时,我看到了 "Time used 119ms" 或类似的东西。但是,在我看到屏幕上的 ListView 中的项目之前,还需要大约 3 秒的时间。 是否有在 ListView 加载项目后触发的事件? 我有兴趣测量 ListView 何时为用户做好准备。

感谢您的评论。我找到了解决办法。 在 Nick Baker 的评论之后,我用谷歌搜索 Dispatcher.Invoke。阅读和测试后我找到了这个页面

WPF: 运行 Window 渲染完成时的代码 http://geekswithblogs.net/ilich/archive/2012/10/16/running-code-when-windows-rendering-is-completed.aspx

然后我将我的代码更改为以下(不是完整代码,只是相关部分):

private void Work(){
    List<Artist> selectedArtistsList;
    //Code to fill selectedArtistsList with about 6,000 items not shown here
    CollectionViewSource selection1ViewSource = ((CollectionViewSource)(this.FindResource("selection1Source")));
    stopWatch1.Reset();
    stopWatch1.Start();
    selection1ViewSource.Source = selectedArtistsList;
    Debug.Print("After setting Source: {0}ms", stopWatch1.ElapsedMilliseconds.ToString());

    //New:
    Dispatcher.BeginInvoke(new Action(RenderingDone), System.Windows.Threading.DispatcherPriority.ContextIdle, null);
}

//New
Stopwatch stopWatch1 = new Stopwatch();
private void RenderingDone() {
    Debug.Print("After rendering is done: {0}ms", stopWatch1.ElapsedMilliseconds.ToString());
}

在 运行 之后我看到: 设置源后:124ms 渲染完成后:2273ms

渲染完成后出现最后一行,它显示了正确的时间。这正是我想要的。