Related resources for Routed Event in Silverlight
  • Working with Routed Event in Silverlight2/4/2011 11:32:23 PM. In .NET we all are familiar with events, which are messages that are sent by an object, which can be any Silverlight element, like button, textbox etc., to notify code that something significant has happened. So in a typical .NET application, the control which fires an event also raises it / handles it.
  • Understanding Routed Event in Silverlight2/4/2011 10:45:14 PM. Silverlight elements use KeyDown and KeyUp events to notify you when a key is pressed. These events use bubbling, so they travel up from the element that currently has focus to the containing elements.