Is this possible?
I am trying to modify how the CheckListBox works when a user clicks on an item. By default there are two options. One requires the user to "select" the item first and then they can check it, meaning 2 clicks. The other is they click the item and it checks that item.
I'd like to combine the two, so that if a user clicks the text of the item it highlights it and "selects" it, and if they click it again it will check it. But I also would like it so that if a user clicks the checkbox it will select the item and check it at the same time.
I'm guessing here, but I think I would need to override the OnSelectedIndexChanged method and find out if the user clicked the text part of the item or the checkbox part.
Any ideas or suggestions would be appreciated!