Method | Description | |
---|---|---|
AddHandler ( |
Adds a handler for the specified event on the specified element
|
|
RaiseEvent ( |
Raises an event for the specified event arguments on the specified element
|
|
RemoveHandler ( |
Removes a handler for the specified event on the specified element
|
public static AddHandler ( |
||
element | The element that listens to the event | |
routedEvent | System.Windows.RoutedEvent | The event to listen for |
handler | The delegate to add | |
return | void |
public static RaiseEvent ( |
||
element | The element that listens to the event | |
e | The arguments for the routed event to be raised | |
return | void |
public static RemoveHandler ( |
||
element | The element that listens to the event | |
routedEvent | System.Windows.RoutedEvent | The event to unhook from |
handler | The delegate to remove | |
return | void |