1
0
mirror of https://github.com/Artemis-RGB/Artemis synced 2025-12-13 05:48:35 +00:00

UI - Virtualize enum comboboxes

This commit is contained in:
Robert 2021-05-27 18:43:37 +02:00
parent 43d8fda091
commit fb3f7e0cc1

View File

@ -14,5 +14,11 @@
SelectedValuePath="Value"
DisplayMemberPath="Description"
SelectedValue="{Binding Path=InputValue}"
IsDropDownOpen="True"/>
IsDropDownOpen="True">
<ComboBox.ItemsPanel>
<ItemsPanelTemplate>
<VirtualizingStackPanel />
</ItemsPanelTemplate>
</ComboBox.ItemsPanel>
</ComboBox>
</UserControl>