Class RadRoutedEventArgs
Contains state information and event data associated with a routed event.
Inheritance
Namespace: Telerik.Windows
Assembly: Telerik.Windows.Controls.dll
Syntax
public class RadRoutedEventArgs : RoutedEventArgs
Constructors
RadRoutedEventArgs()
Initializes a new instance of the RadRoutedEventArgs class.
Declaration
public RadRoutedEventArgs()
RadRoutedEventArgs(Object)
Initializes a new instance of the RadRoutedEventArgs class, using the supplied routed event identifier, and providing the opportunity to declare a different source for the event.
Declaration
public RadRoutedEventArgs(object source)
Parameters
System.Object
source
An alternate source that will be reported when the event is handled. This pre-populates the Source property. |
RadRoutedEventArgs(RoutedEvent)
Initializes a new instance of the RadRoutedEventArgs class, using the supplied routed event identifier.
Declaration
public RadRoutedEventArgs(RoutedEvent routedEvent)
Parameters
System.Windows.RoutedEvent
routedEvent
The routed event identifier for this instance of the RoutedEventArgs class. |
RadRoutedEventArgs(RoutedEvent, Object)
Initializes a new instance of the RadRoutedEventArgs class, using the supplied routed event identifier, and providing the opportunity to declare a different source for the event.
Declaration
public RadRoutedEventArgs(RoutedEvent routedEvent, object source)
Parameters
System.Windows.RoutedEvent
routedEvent
The routed event identifier for this instance of the RoutedEventArgs class. |
System.Object
source
An alternate source that will be reported when the event is handled. This pre-populates the Source property. |