I have a ListView which consists of Movie Genres. User can select multiple genres. It is saved in Database.
In Admin Mode, I want to have the same ListView: Checkbox and Value. Only here Admin can't change the SelectedItems. I want the selection of ListView to be disabled. I have tried following steps:
- The checkbox is gone if I set SelectionMode from Multiple to None as there is no "DisableSelection".
- If I make IsHitTestVisible into False: I can't scroll the ListView
- I have tried to modify the Style (ListViewItem) where I set MultiSelectSquare Visibility to always Visible and I also deleted MultiSelectClipTransform since this element hides the Checkbox if the SelectionMode is not multiple. The thing is: the checkbox is there but all items' selectedvalue is unselected.
Does anybody have a workaround?