1
コンボボックスにUI Virualisationを1000個追加しました。Silverlight 3コンボボックスUi仮想化
<ComboBox ItemsSource="{Binding}">
<ComboBox.ItemsPanel>
<ItemsPanelTemplate>
<VirtualizingStackPanel />
</ItemsPanelTemplate>
</ComboBox.ItemsPanel>
</ComboBox>
スクロールは今超高速:-)ですが、最初の「オープン」は、まだ本当に遅いです(2-3秒)
この開口時間を改善する方法はありますか?私のデータはすでにバインドされているので、これはUIの問題であると仮定します。
おかげで、 マーク