Class LayoutSerializationEventArgs
Defines event arguments used for RadDocking layout Serialization events.
Inherited Members
Namespace: Telerik.Windows.Controls
Assembly: Telerik.Windows.Controls.Docking.dll
Syntax
public class LayoutSerializationEventArgs : LayoutSerializationBaseEventArgs, IElementProperties
Constructors
LayoutSerializationEventArgs(DependencyObject, String)
Initializes a new instance of the LayoutSerializationEventArgs class.
Declaration
public LayoutSerializationEventArgs(DependencyObject affectedElement, string affectedElementSerializationTag)
Parameters
System.Windows.DependencyObject
affectedElement
The affected element. |
System.String
affectedElementSerializationTag
The serialization tag of the affected element. |
LayoutSerializationEventArgs(DependencyObject, String, Dictionary<String, String>)
Initializes a new instance of the LayoutSerializationEventArgs class.
Declaration
public LayoutSerializationEventArgs(DependencyObject affectedElement, string affectedElementSerializationTag, Dictionary<string, string> elementProperties)
Parameters
System.Windows.DependencyObject
affectedElement
The affected element. |
System.String
affectedElementSerializationTag
The serialization tag of the affected element. |
System.Collections.Generic.Dictionary<System.String, System.String>
elementProperties
A System.Collections.Generic.Dictionary<, > containing the string representations of the System.Windows.DependencyPropertys of the AffectedElement. |
Properties
ElementProperties
Gets a System.Collections.Generic.Dictionary<, > containing the string representations of the System.Windows.DependencyPropertys of the AffectedElement that will be saved to the layout Xml of the RadDocking.
Declaration
public Dictionary<string, string> ElementProperties { get; }
Property Value
System.Collections.Generic.Dictionary<System.String, System.String>
|