Class ElementCreatedEventArgs
The event args are used when the DefaultGeneratedItemsFactory the dynamically creates the RadDocking's elements.
Inheritance
Namespace: Telerik.Windows.Controls.Docking
Assembly: Telerik.Windows.Controls.Docking.dll
Syntax
public class ElementCreatedEventArgs : EventArgs
Constructors
ElementCreatedEventArgs(DependencyObject, DependencyObject)
Initializes a new instance of the ElementCreatedEventArgs class.
Declaration
public ElementCreatedEventArgs(DependencyObject sourceElement, DependencyObject createdElement)
Parameters
System.Windows.DependencyObject
sourceElement
The root System.Windows.DependencyObject element. |
System.Windows.DependencyObject
createdElement
The newly auto generated element. |
Properties
CreatedElement
Gets the newly auto generated element.
Declaration
public DependencyObject CreatedElement { get; }
Property Value
System.Windows.DependencyObject
|
SourceElement
Gets the System.Windows.DependencyObject instance.
Declaration
public DependencyObject SourceElement { get; }
Property Value
System.Windows.DependencyObject
|