Chapter 21 Flashcards
1
Q
What are input events
A
Events coming from keyboard, stylus, multi touch screen
2
Q
What are routed events
A
A routed event is a type of event that can invoke handlers on multiple listeners in an element tree, rather than just on the object that raised the event.
3
Q
What are 2 types of elements tree
A
- Logical element tree
2. Visual element tree
4
Q
What are 3 routing strategies of routed events
A
- Bubbling: Event handlers on the event source are invoked. Events handlers starts from the source until the root
- Tunneling: Initially, event handlers at the element tree root are invoked. Event moves from top to bottom. It is reverse of bubble.
- Direct: Event is only intended to the element and that’s it.
5
Q
What is the purpose of handler mark
A
It means there is no need to further process it.