Class LayoutControlGroupBase
Represents a base class for all groups displayed inside the RadLayoutControl.
Inheritance
Namespace: Telerik.Windows.Controls.LayoutControl
Assembly: Telerik.Windows.Controls.Navigation.dll
Syntax
public abstract class LayoutControlGroupBase : ItemsControl, ISerializable
Constructors
LayoutControlGroupBase()
Declaration
protected LayoutControlGroupBase()
Fields
OrientationProperty
Identifies the Orientation dependency property.
Declaration
public static readonly DependencyProperty OrientationProperty
Field Value
System.Windows.DependencyProperty
|
Properties
Orientation
Gets or sets a value indicating the orientation of the Group.
Declaration
public Orientation Orientation { get; set; }
Property Value
System.Windows.Controls.Orientation
|
Methods
ClearContainerForItemOverride(DependencyObject, Object)
When overridden in a derived class, undoes the effects of the System.Windows.Controls.ItemsControl.PrepareContainerForItemOverride(System.Windows.DependencyObject,System.Object) method.
Declaration
protected override void ClearContainerForItemOverride(DependencyObject element, object item)
Parameters
System.Windows.DependencyObject
element
|
System.Object
item
|
Deserialize(SerializationInfo)
Deserializes the specified info. Restores the property values of the instance from the info.
Declaration
public virtual void Deserialize(SerializationInfo info)
Parameters
SerializationInfo
info
|
Implements
OnPropertyChanged(DependencyPropertyChangedEventArgs)
Invoked whenever the effective value of any dependency property on this System.Windows.FrameworkElement has been updated. The specific dependency property that changed is reported in the arguments parameter.
Declaration
protected override void OnPropertyChanged(DependencyPropertyChangedEventArgs e)
Parameters
System.Windows.DependencyPropertyChangedEventArgs
e
|
PrepareContainerForItemOverride(DependencyObject, Object)
Prepares the specified element to display the specified item.
Declaration
protected override void PrepareContainerForItemOverride(DependencyObject element, object item)
Parameters
System.Windows.DependencyObject
element
Element used to display the specified item. |
System.Object
item
Specified item. |
Serialize()
Serializes this instance into a SerializationInfo object.
Declaration
public virtual SerializationInfo Serialize()
Returns
SerializationInfo
|
Implements
Events
ElementLoaded
Occurs when an element is loaded.
Declaration
public event EventHandler<LayoutElementSerializationEventArgs> ElementLoaded
Event Type
System.EventHandler<LayoutElementSerializationEventArgs>
|
ElementLoading
Occurs when an element starts loading.
Declaration
public event EventHandler<LayoutElementLoadingEventArgs> ElementLoading
Event Type
System.EventHandler<LayoutElementLoadingEventArgs>
|
ElementSaved
Occurs when an element is saved.
Declaration
public event EventHandler<LayoutElementSerializationEventArgs> ElementSaved
Event Type
System.EventHandler<LayoutElementSerializationEventArgs>
|
ElementSaving
Occurs when an element starts saving.
Declaration
public event EventHandler<LayoutElementSavingEventArgs> ElementSaving
Event Type
System.EventHandler<LayoutElementSavingEventArgs>
|