Intersoft.Client.Framework Namespace : ISRoutedEventHandler Delegate |
Public Delegate Sub ISRoutedEventHandler( _ ByVal sender As Object, _ ByVal e As ISRoutedEventArgs _ )
Dim instance As New ISRoutedEventHandler(AddressOf HandlerMethod)
public delegate void ISRoutedEventHandler( object sender, ISRoutedEventArgs e )
public delegate void ISRoutedEventHandler( Object^ sender, ISRoutedEventArgs^ e )
The RoutedEventHandler delegate is used for any routed event that does not report event-specific information in the event data. There are many such routed events; prominent examples include Click and Loaded.
The most noteworthy difference between writing a handler for a routed event as opposed to a general common language runtime (CLR) event is that the sender of the event (the element where the handler is attached and invoked) cannot be considered to necessarily be the source of the event. The source is reported as a property in the event data (Source). A difference between sender and Source is the result of the event being routed to different elements, during the traversal of the routed event through an element tree.
You can use either sender or Source for an object reference if you are deliberately not interested in the routing behavior of a direct or bubbling routed event and you only intend to handle routed events on the elements where they are first raised. In this circumstance, sender and Source are the same object.
If you do intend to take advantage of the inherent features of routed events and write your handlers accordingly, the two most important properties of the event data that you will work with when writing event handlers are Source and Handled.
For certain combinations of input events and ClientUI control classes, the element that raises the event is not the first element that has the opportunity to handle it. If the input event has a Preview version of the event, then the root of the element tree has first opportunity, can set Handled to true in the shared event data, and can influence how the input event is reported to remaining elements in its event route.
For more information on how to mark a routed event as handled, see How to: Mark a Routed Event as Handled. For more information about routed event concept, see Routed Events Overview.
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2