There is something i need to do, list something in WPF but i don't want the users to click on the list, the list box does not have a property to disable selection. You can disable the control, but that's not what i need, because it messes with the styles and makes the text difficult to read. I mean there is something like:
<ListBox IsEnabled="{Binding IsValid}" ...> ... </ListBox>
I wonder if there is something like:
<ListBox Selection="Disabled" ...> ... </ListBox>
Or if there exists an alternative to listing items different to a list box
The question is, is there a way to list content in WPF and that the users can't select those items??