Class RadLayoutControl
A container control which keeps its child controls arranged in a consistent way and scales their layout as the control size changes. Allows runtime customization and serializing the layout.
Inherited Members
Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.UI.dll
Syntax
[TelerikToolboxCategory("Containers")]
public class RadLayoutControl : RadNCEnabledControl, INotifyPropertyChanged, ISupportInitializeNotification, ISupportInitialize, IComponentTreeHandler, ILayoutHandler, IPCHost, IAnalyticsProvider, IMessageFilter
Constructors
RadLayoutControl()
Declaration
public RadLayoutControl()
Properties
AllowCustomize
Gets or sets a value indicating whether the end-user is allowed show the Customize Dialog and modify the existing layout.
Declaration
public bool AllowCustomize { get; set; }
Property Value
System.
|
AllowHiddenItems
Gets or sets a value indicating whether the end-user is allowed to hide and show existing items.
Declaration
public bool AllowHiddenItems { get; set; }
Property Value
System.
|
AllowResize
Gets or sets a value indicating whether resizing is enabled when the Customize Dialog is not shown.
Declaration
public bool AllowResize { get; set; }
Property Value
System.
|
ClientMargin
Gets the margin around the client area of the control. In the default case, this should be the border thickness.
Declaration
public Padding ClientMargin { get; }
Property Value
System.
|
ContainerElement
Gets the main Layout
Declaration
public LayoutControlContainerElement ContainerElement { get; }
Property Value
CreateParams
Declaration
protected override CreateParams CreateParams { get; }
Property Value
System.
|
CurrentResizingBehavior
If the user is currently resizing, returns the active Layout
Declaration
public LayoutControlResizingBehavior CurrentResizingBehavior { get; }
Property Value
Cursor
Declaration
public override Cursor Cursor { get; set; }
Property Value
System.
|
CustomizeDialog
Gets or sets the Customize Dialog form which is shown via the context menu.
Declaration
public RadLayoutControlCustomizeDialog CustomizeDialog { get; set; }
Property Value
DefaultSize
Declaration
protected override Size DefaultSize { get; }
Property Value
System.
|
DragOverlay
Gets the Layout
Declaration
public LayoutControlDraggableOverlay DragOverlay { get; }
Property Value
DragOverlayVisible
Indicates whether the DragOverlay control is visible.
Declaration
public bool DragOverlayVisible { get; }
Property Value
System.
|
DrawBorder
Gets or sets a value indicating whether the control should draw its border.
Declaration
public bool DrawBorder { get; set; }
Property Value
System.
|
DropDownMenu
Gets or sets the context menu.
Declaration
public RadDropDownMenu DropDownMenu { get; set; }
Property Value
EnableNCModification
Declaration
protected override bool EnableNCModification { get; }
Property Value
System.
|
Overrides
EnableNCPainting
Declaration
protected override bool EnableNCPainting { get; }
Property Value
System.
|
Overrides
HiddenItems
Gets a collection containing the hidden items.
Declaration
public RadItemCollection HiddenItems { get; }
Property Value
HorizontalScrollbar
Gets the horizontal Rad
Declaration
public RadHScrollBar HorizontalScrollbar { get; }
Property Value
IsResizing
Indicates whether the user is currently resizing the items.
Declaration
public bool IsResizing { get; }
Property Value
System.
|
Items
Gets a collection containing the items on the root level.
Declaration
public RadItemOwnerCollection Items { get; }
Property Value
Text
This property is not relevant for this class.
Declaration
public override string Text { get; set; }
Property Value
System.
|
Overrides
VerticalScrollbar
Gets the vertical Rad
Declaration
public RadVScrollBar VerticalScrollbar { get; }
Property Value
XmlSerializationInfo
Gets the serialization info for RadLayoutControl used by Save/Load layout methods to persist the layout to/from XML. By default or when set to null the ComponentXmlSerializationInfo provided by GetDefaultXmlSerializationInfo() will be used.
Declaration
public ComponentXmlSerializationInfo XmlSerializationInfo { get; set; }
Property Value
Methods
AddItem(Control, Control, LayoutControlDropPosition)
Adds a control at a specified position next to a specified control.
Declaration
public void AddItem(Control control, Control anchor, LayoutControlDropPosition position)
Parameters
System. The control to add. |
System. An existing control next to which the new control will be added. |
Layout The position at which the new control will be added. |
AddItem(Control, LayoutControlContainerElement)
Adds a control to the specified container.
Declaration
public void AddItem(Control control, LayoutControlContainerElement container)
Parameters
System. The control to add. |
Layout The container. |
AddItem(Control, LayoutControlItemBase, LayoutControlDropPosition)
Adds a control at a specified position next to a specified item.
Declaration
public void AddItem(Control control, LayoutControlItemBase anchor, LayoutControlDropPosition position)
Parameters
System. The control to add. |
Layout An existing item next to which the new control will be added. |
Layout The position at which the new control will be added. |
AddItem(LayoutControlItemBase)
Adds an item at the root level of the control and rebuilds the layout.
Declaration
public void AddItem(LayoutControlItemBase item)
Parameters
Layout The item to add. |
AddItem(LayoutControlItemBase, Control, LayoutControlDropPosition)
Adds an item at a specified position next to a specified existing control.
Declaration
public void AddItem(LayoutControlItemBase item, Control anchor, LayoutControlDropPosition position)
Parameters
Layout The item to add. |
System. An existing control next to which the new control will be added. |
Layout The position at which the new control will be added. |
AddItem(LayoutControlItemBase, LayoutControlContainerElement)
Adds an item to the specified container and rebuilds its layout.
Declaration
public void AddItem(LayoutControlItemBase item, LayoutControlContainerElement container)
Parameters
Layout The item to add. |
Layout The container to add the item to. |
AddItem(LayoutControlItemBase, LayoutControlItemBase, LayoutControlDropPosition)
Adds an item at a specified position next to a specified existing item.
Declaration
public void AddItem(LayoutControlItemBase item, LayoutControlItemBase anchor, LayoutControlDropPosition position)
Parameters
Layout The item to add. |
Layout An existing item next to which the new control will be added. |
Layout The position at which the new control will be added. |
BeginInit()
BeginUpdate()
Puts the control in an initialization state where it will not update until EndUpdate is called.
Declaration
public void BeginUpdate()
CloseCustomizeDialog()
Closes the Rad
Declaration
public void CloseCustomizeDialog()
CreateChildItems(RadElement)
Declaration
protected override void CreateChildItems(RadElement parent)
Parameters
Rad
|
Overrides
CreateControlsInstance()
Declaration
protected override Control.ControlCollection CreateControlsInstance()
Returns
System.
|
Dispose(Boolean)
Declaration
protected override void Dispose(bool disposing)
Parameters
System.
|
Overrides
EndInit()
EndUpdate()
Puts the control out of the initialization state caused by calling BeginUpdate and updates it.
Declaration
public void EndUpdate()
EnsureItemsControlsVisibility()
Called after load layout to ensure the visibility of the controls is the same as the visibility of the items.
Declaration
protected void EnsureItemsControlsVisibility()
FindItemByControl(Control)
Finds the item associated with a given control.
Declaration
public LayoutControlItem FindItemByControl(Control control)
Parameters
System. The control. |
Returns
Layout The control's associated item. |
FindItemByControl(Control, Boolean)
Finds the item associated with a given control.
Declaration
public LayoutControlItem FindItemByControl(Control control, bool includeHidden)
Parameters
System. The control. |
System. [true] if the HiddenItems collection should be searched, [false] otherwise. |
Returns
Layout The control's associated item. |
GetAllItems()
Gets the items from all levels which are nested in the control.
Declaration
public IEnumerable<LayoutControlItemBase> GetAllItems()
Returns
System. An enumeration of the items. |
GetAllItems(Boolean)
Gets the items from all levels which are nested in the control.
Declaration
public IEnumerable<LayoutControlItemBase> GetAllItems(bool includeHidden)
Parameters
System.
|
Returns
System.
|
GetBehaviorAtPoint(Point)
Gets the Layout
Declaration
public LayoutControlResizingBehavior GetBehaviorAtPoint(Point point)
Parameters
System. The point. |
Returns
Layout The resizing behavior at that point. |
GetCursorAtPoint(Point)
Gets the mouse cursor which should be shown at a given point.
Declaration
public Cursor GetCursorAtPoint(Point point)
Parameters
System. The point. |
Returns
System. The cursor to be shown at that point. |
GetDefaultXmlSerializationInfo()
Gets the default serialization info for RadLayoutControl used by Save/Load layout methods to persist the layout to/from XML.
Declaration
protected virtual ComponentXmlSerializationInfo GetDefaultXmlSerializationInfo()
Returns
Component The default serialization info. |
GetInitialCustomizeDialogLocation()
Gets the initial location of the Rad
Declaration
protected virtual Point GetInitialCustomizeDialogLocation()
Returns
System. The location. |
GetNCMetrics()
Declaration
protected override Padding GetNCMetrics()
Returns
System.
|
Overrides
HideDragOverlay()
HideItem(Control)
Hides a control from the RadLayoutPanel and places it in the HiddenItems collection.
Declaration
public void HideItem(Control control)
Parameters
System. The control to hide. |
HideItem(LayoutControlItemBase)
Hides an item from the RadLayoutPanel and places it in the HiddenItems collection.
Declaration
public void HideItem(LayoutControlItemBase item)
Parameters
Layout The item to hide. |
InitializeDropDownMenu()
Initializes the items of the default context menu.
Declaration
protected virtual void InitializeDropDownMenu()
LoadLayout(Stream)
Loads RadLayoutControl's layout state from XML file, using the serialization
information provided by the Xml
Declaration
public virtual void LoadLayout(Stream stream)
Parameters
System. The stream to read from. |
LoadLayout(String)
Loads RadLayoutControl's layout state from XML file, using the serialization
information provided by the Xml
Declaration
public virtual void LoadLayout(string fileName)
Parameters
System. The file to read from. |
LoadLayout(XmlReader)
Loads RadLayoutControl's layout state from XML file, using the serialization
information provided by the Xml
Declaration
public virtual void LoadLayout(XmlReader xmlReader)
Parameters
System. The XmlReader to read the XML from. |
OnHandleCreated(EventArgs)
Declaration
protected override void OnHandleCreated(EventArgs e)
Parameters
System.
|
OnHandleDestroyed(EventArgs)
Declaration
protected override void OnHandleDestroyed(EventArgs e)
Parameters
System.
|
Overrides
OnHandleDropCompleted(Object)
Declaration
protected virtual void OnHandleDropCompleted(object sender)
Parameters
System.
|
OnItemHiding(LayoutControlItemHidingEventArgs)
Declaration
protected virtual void OnItemHiding(LayoutControlItemHidingEventArgs args)
Parameters
OnLayout(LayoutEventArgs)
Declaration
protected override void OnLayout(LayoutEventArgs e)
Parameters
System.
|
Overrides
OnLoad(Size)
Declaration
protected override void OnLoad(Size desiredSize)
Parameters
System.
|
Overrides
OnMouseDown(MouseEventArgs)
Declaration
protected override void OnMouseDown(MouseEventArgs e)
Parameters
System.
|
Overrides
OnMouseMove(MouseEventArgs)
Declaration
protected override void OnMouseMove(MouseEventArgs e)
Parameters
System.
|
Overrides
OnMouseUp(MouseEventArgs)
Declaration
protected override void OnMouseUp(MouseEventArgs e)
Parameters
System.
|
Overrides
OnMouseWheel(MouseEventArgs)
Declaration
protected override void OnMouseWheel(MouseEventArgs e)
Parameters
System.
|
Overrides
OnNCPaint(Graphics)
Declaration
protected override void OnNCPaint(Graphics g)
Parameters
System.
|
Overrides
OnPaint(PaintEventArgs)
Declaration
protected override void OnPaint(PaintEventArgs e)
Parameters
System.
|
Overrides
OnSizeChanged(EventArgs)
Declaration
protected override void OnSizeChanged(EventArgs e)
Parameters
System.
|
OnStructureChanged(Object)
Declaration
protected virtual void OnStructureChanged(object sender)
Parameters
System.
|
OnThemeChanged()
PreFilterMessage(ref Message)
Declaration
public bool PreFilterMessage(ref Message m)
Parameters
System.
|
Returns
System.
|
ProcessCmdKey(ref Message, Keys)
Declaration
protected override bool ProcessCmdKey(ref Message msg, Keys keyData)
Parameters
System.
|
System.
|
Returns
System.
|
RemoveItem(Control)
Removes the specified control from the RadLayoutControl.
Declaration
public void RemoveItem(Control control)
Parameters
System. The control to remove. |
RemoveItem(LayoutControlItemBase)
Removes the specified item from the RadLayoutControl.
Declaration
public void RemoveItem(LayoutControlItemBase item)
Parameters
Layout The item to remove. |
ResetBackColorThemeOverrides()
Declaration
protected override void ResetBackColorThemeOverrides()
Overrides
ResetForeColorThemeOverrides()
Declaration
protected override void ResetForeColorThemeOverrides()
Overrides
ResizeItem(Control, Int32)
Resizes the specified control with a specified amount. Resize direction depends on the position of item.
Declaration
public void ResizeItem(Control control, int diff)
Parameters
System. The control to resize. |
System. The amount to resize with. |
ResizeItem(LayoutControlItemBase, Int32)
Resizes the specified item with a specified amount. Resize direction depends on the position of item.
Declaration
public void ResizeItem(LayoutControlItemBase item, int diff)
Parameters
Layout The item to resize. |
System. The amount to resize with. |
SaveLayout(Stream)
Stores RadLayoutControl's layout state in XML format, using the serialization
information provided by the Xml
Declaration
public virtual void SaveLayout(Stream stream)
Parameters
System. The stream to write to. |
SaveLayout(String)
Stores RadLayoutControl's layout state in XML format, using the serialization
information provided by the Xml
Declaration
public virtual void SaveLayout(string fileName)
Parameters
System. The file to write to. |
SaveLayout(XmlWriter)
Stores RadLayoutControl's layout state in XML format, using the serialization
information provided by the Xml
Declaration
public virtual void SaveLayout(XmlWriter xmlWriter)
Parameters
System. XmlWriter to use by the built-in serializer |
SetBackColorThemeOverrides()
Declaration
protected override void SetBackColorThemeOverrides()
Overrides
SetForeColorThemeOverrides()
Declaration
protected override void SetForeColorThemeOverrides()
Overrides
ShowCustomizeDialog()
Shows the Rad
Declaration
public void ShowCustomizeDialog()
ShowDragOverlay()
Shows the Layout
Declaration
public void ShowDragOverlay()
UpdateControlsLayout()
Updates the bounds of nested controls.
Declaration
public void UpdateControlsLayout()
UpdateScrollbars()
Updates the scrollbar metrics.
Declaration
public virtual void UpdateScrollbars()
Events
ItemHiding
Fired when the items of the control or the items of the inner containers (such as groups and tabbed groups) have changed.
Declaration
public event EventHandler<LayoutControlItemHidingEventArgs> ItemHiding
Event Type
System.
|
StructureChanged
Fired when the items of the control or the items of the inner containers (such as groups and tabbed groups) have changed.
Declaration
public event EventHandler StructureChanged
Event Type
System.
|