vote up 0 vote down star

I have a WPF TreeView which triggers a SelectedItemChanged event. Whenever I select an item in the TreeView, the SelectedItemChanged event is triggered for the selected item and all of the selected node's ancestors in the tree.

How do I prevent the SelectedItemChanged event from firing more than once?

flag

1 Answer

vote up 2 vote down check

Set the e.Handled to true in the handler.

link|flag
I have tried this and it still bubbles. – emddudley Jul 14 at 22:30
I'm using the Composite Application Library and the problem seems to stem from using EventAggregator to publish an event in the SelectedItemChaged event handler. – emddudley Jul 15 at 12:52
Turns out the problem is from some of my other code that was triggering the event... the above answer is still valid for the question in general. – emddudley Jul 15 at 15:33

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.