欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

加载大量控件

程序员文章站 2022-03-29 11:33:06
1.将线程设置为应用程序空闲处理 Dispatcher.Invoke(new Action(() => { 加载控件; }), System.Windows.Threading.DispatcherPriority.ApplicationIdle); 2.提示等待框 在新线程中启动等待框 http: ......

1.将线程设置为应用程序空闲处理

Dispatcher.Invoke(new Action(() =>
{
加载控件;
}), System.Windows.Threading.DispatcherPriority.ApplicationIdle);

2.提示等待框

在新线程中启动等待框

http://blog.csdn.net/steel_1991/article/details/54428525

3.启用虚拟化

VirtualizingStackPanel