New to Telerik UI for WinFormsStart a free 30-day trial

Properties

Updated over 6 months ago
PropertyDescription
AllowCustomizeWith this property you can disable the customize mode. This way the user will be not able to edit the layout at runtime.
AllowHiddenItemsBy default you can hide the items when you are in customize mode and this can be disabled by setting the property to false.
AllowResizeWhen this property is set to true the user will be able to resize the control containers at run time – without opening the customize dialog.
ItemsThis collection contains the currently added items.
DropDownMenuGives access to the default context menu.
DragOverlayVisibleGets a value which indicates if the drag overlay is visible.
CustomizeDialogGives you access to the customize dialog instance. You can use it to assign custom dialog as well.

Methods

MethodDescription
AddItemAdds item to the layout. You can directly pass an item or a control instance.
RemoveItemRemoves an item. You can pass the item or the contained control as parameter.
HideItemHides an item, you can pass the item or the contained control as parameter.
ShowCustomizeDialogShows the customize dialog.
CloseCustomizeDialogCloses the customize dialog.
GetAllItemsReturns IEnumerable collection of all the items. With the parameter you can include or exclude the hidden ones. This includes items nested within groups or tabbed groups.
FindItemByControlReturns the item in which specific control is hosted in.

Events

EventDescription
StructureChangedFires when the item position in the control is changed.

RadLayoutControlGroupItem Events

EventDescription
ExpandedOccurs when the group item is expanded.
CollapsedOccurs when the group item is collapsed.
ExpandingOccurs when the group item is about to be expanded.
CollapsingOccurs when the group item is about to be collapsed.

See Also