Even when the control loses focus, the selected row remains highlighted.
How to get the selected item to have the same style like the non selected items?
I just want to be able to check or uncheck the items, focus is not important and therefore there should not be a visible difference.
Expected something like this but it does not work:
ClassificationCheckedListBox.Focusable = False;
ClassificationCheckedListBox.AllowShowFocusCues = False;
Also trying some things from the selectedindex changed event like this does not do it:
ClassificationCheckedListBox.FocusedElement.ResetLayout(True);
Any clue appreciated