October 2011
Intermediate to advanced
880 pages
14h 44m
English
In the same way that WPF extends (adds functionality to the basic .NET property mechanism, it also extends the .NET event pattern that we explored in Chapter 14 by introducing ROUTED EVENTS.
A standard .NET event can be handled by any object that registers a handler for it. WPF routed events can behave that way, too, but they can also travel up and down the logical tree, letting the event be handled by the most appropriate object in the logical tree. That’s particularly important in WPF because of the way objects are nested. When you create a Button, for example, you want to set an event handler on the Button itself, not on every one of its visual children.
After we’ve explored the WPF event model, we’ll examine WPF commands ...