How do I disable selection in a ListBox?
|
Approach 1 -
|
|
no, it will only change the visual effect, not the actual selection behavior – Thomas Levesque Sep 9 '09 at 10:00 |
||
|
|||
|
Re-reading these comments again I want to point out that @Thomas Levesque's comment is only true of the second approach I show. Using plain ItemsControl will completely remove any concept of selection. – Drew Noakes Apr 20 '11 at 3:03 |
||
|
|
I found a very simple and straight forward solution working for me, I hope it would do for you as well
|
|||||||
|
|
You could switch to using an |
|||||||||||||
|
|
Another option worth considering is disabling the ListBoxItems. This can be done by setting the ItemContainerStyle as shown in the following snippet.
If you don't want the text to be grey you can specify the disabled color by adding a brush to the style's resources with the following key: {x:Static SystemColors.GrayTextBrushKey}. The other solution would be to override the ListBoxItem control template. |
|||||
|
|
Note: This solution does not disable selection by keyboard navigation or right clicking (ie. arrow keys followed by space key) All previous answers either remove the ability select completly (no switching in runtime) or simply remove the visual effect, but not the selection. But what if you want to be able to select and show selection by code, but not by user input? May be you want to "freeze" the user's selection while not disabling the whole Listbox? The solution is to wrap the whole ItemsContentTemplate into a Button that has no visual chrome. The size of the button must be equal to the size of the Item, so it's completely covered. Now use the button's IsEnabled-Property: Enable the button to "freeze" the item's Selection-state. This works because the enabled button eats all mouse events before they bubble up to the ListboxItem-Eventhandler. Your ItemsDataTemplate will still receive MouseEvents because it's part of the buttons content. Disable the button to enable changing the selection by clicking.
dartrax |
||||
|
|
|
To disable on or more options in your listbox/dropdown, you can add the "disabled" attribute as shown below. This prevent the user from selection this option, and it gets a gray overlay.
|
|||
|
|
|
While @Drew Noakes's answer is a quick solution for most cases there is a bit of a flaw that comes with setting the x:Static brushes. When you set the x:Static brushes as suggested, all of the children controls within the list box item will inherit this style. That means that, while this will work for disabling the highlighting of the list box item, it may result in undesired effects for the child controls. For example, if you had a ComboBox within your ListBoxItem, it would disable the mouse over highlighting within the ComboBox. Instead, consider setting the VisualStates for the Selected, Unselected, and MouseOver events as covered in the solution mentioned in this stackoverflow thread: Remove Control Highlight From ListBoxItem but not children controls. -Frinny |
||||
|
|
|
You can place a Textblock above your listbox, it will not change the look of your application and also it won't allow to select any item. |
||||
|
Maybe you need onlly functionality of ItemsControl? It don't allow selection:
|
|||||||||
|
|
IsEnabled = false |
|||||||||||||||
|