Defines event arguments used for RadDocking layout Serialization events.
Definition
Namespace:Telerik.Windows.Controls
Assembly:Telerik.Windows.Controls.Docking.dll
Syntax:
public class LayoutSerializationEventArgs : LayoutSerializationBaseEventArgs, IElementProperties
Inheritance: objectEventArgsLayoutSerializationBaseEventArgsLayoutSerializationEventArgs
Derived Classes:
Implements:
Inherited Members
Constructors
Initializes a new instance of the LayoutSerializationEventArgs class.
public LayoutSerializationEventArgs(DependencyObject affectedElement, string affectedElementSerializationTag, Dictionary<string, string> elementProperties)
The affected element.
affectedElementSerializationTagstringThe serialization tag of the affected element.
elementPropertiesDictionary<string, string>A Dictionary<TKey, TValue> containing the string representations of the DependencyPropertys of the AffectedElement.
Initializes a new instance of the LayoutSerializationEventArgs class.
public LayoutSerializationEventArgs(DependencyObject affectedElement, string affectedElementSerializationTag)
The affected element.
affectedElementSerializationTagstringThe serialization tag of the affected element.
Properties
Gets a Dictionary<TKey, TValue> containing the string representations of the DependencyPropertys of the AffectedElement that will be saved to the layout Xml of the RadDocking.
public Dictionary<string, string> ElementProperties { get; }
Implements: