On a Silverlight ComboBox, the SelectionChanged event does not fire when you open the dropdown list, then click on the currently selected item. What's the best way to have an event/method trigger when this happens? (in addition to anything that would normally trigger SelectionChanged, i.e. they either click an unselected or selected item; but not when they just click off of the dropdown)
I currently have DataTemplates set up for the items in the list. I tried to attach to the MouseLeftButtonUp events of the elements in that, but there's a margin around the items, so it doesn't always register a click that closes the combobox and selects the item.
|
| |||
|
feedback
|
|
Have you considered the "DropDownClosed" event? | |||||||||
feedback
|