Hi,
I have added UI Virualisation to my combobox with 1000 items in it.
<ComboBox ItemsSource="{Binding}">
<ComboBox.ItemsPanel>
<ItemsPanelTemplate>
<VirtualizingStackPanel />
</ItemsPanelTemplate>
</ComboBox.ItemsPanel>
</ComboBox>
The scrolling is now superfast :-) but the initial "open" is still really slow (2-3 seconds)
Is there a way to improve this opening time? My data is already bound so i assume this is a UI issue.
Thanks, Mark