There is no ListBox.SelectionMode=”None”, is there another way to disable selection in a listbox?
Approach 1 – ItemsControl Unless you need other aspects of the ListBox, you could use ItemsControl instead. It places items in the ItemsPanel and doesn’t have the concept of selection. <ItemsControl ItemsSource=”{Binding MyItems}” /> By default, ItemsControl doesn’t support virtualization of its child elements. If you have a lot of items, virtualization can reduce memory … Read more