ListBox原本绑定1k以上数据源,现在需要对数据源进行更新,发现数据源的重新绑定时间time>2s,请问将绑定时间压缩,谢谢。
xmln:
<ListBox ItemsSource="{Binding SourceList}" DisplayMemberPath="{Binding DisplayName}" />
cs:
///InitSource
ObservableCollection<Record>SourceList=GetSource();///SourceList.Count>1000;
///ReBinding
SourceList=Search();/// the count of search resule >1000 此时页面加载时间过长,疑为ListBox移除Item所致