Tagged Questions
The event-routing tag has no wiki summary.
5
votes
4answers
4k views
Why doesn't button click event “bubble up visual tree” to StackPanel as MSDN article states?
In the MSDN article Understanding Routed Events and Commands In WPF, it states
an event will bubble (propagate) up the visual tree from the source element until either it has been handled or it ...
2
votes
3answers
214 views
How to prevent InvokeCommandAction from propagating event to parent elements?
I realised that when using an InvokeCommandAcction associated to an EventTrigger, the original event was still routing up to the parent elements until it is handled. Well, I guess it is an expected ...
0
votes
2answers
120 views
Prevent KeyDown event bubbling from TextBox to MainWindow in WPF
I have a program that contains a textbox control. A user is able to enter text into this control. The user can also press certain keys to trigger other actions (this is handled on the MainWindow). I ...
0
votes
2answers
616 views
Silverlight page not catching input events
I have been attempting to handle the KeyDown event of a UserControl (page) in my Silverlight application, but there seems to be some strange behaviour on the part of Silverlight user input ...