RadDock for ASP.NET

Structure Send comments on this topic.
See Also
Defining dynamic layouts with RadDock controls > Dockable Objects > Structure

Glossary Item Box

RadDockableObject component represents the dynamic object that can be dragged with the mouse and dropped onto a RadDockingZone. To add an instance of RadDockableObject component, you can drag-n-drop it from the Visual Studio Toolbox to the form, or define it programmatically by writing its tags in the body of the form:

<rad:RadDockingManager id="RadDockingManager1" runat="server"></rad:RadDockingManager>
   ...
   <rad:RadDockingZone id=RadDockingZone1 runat="server" Width="100%" Height="100%">
      <rad:RadDockableObject id=RadDockableObject1 runat="server" Text="Dockable Object 1">
        <ContentTemplate>
           ...
        </ContentTemplate>
      </rad:RadDockableObject>
   </rad:RadDockingZone>

RadDockableObject is a template control. To add child controls to an instance of RadDockableObject its content template should be edited

 

RadDockableObject consists of a Title bar area and four additional grips. The Title bar has a caption (Text) and command buttons to manage its state (Close, Minimize/Restore, Pin/Unpin, etc.).  

See Also