Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
495
Setting up XamDockManager Panes in a complex orientation
posted

I have an application where I am using the xamDock manager that takes up the whole screen but I would like the orientation as follows.

 

Top of the screen

---------------

Pane 1 (takes up width of the whole screen)

----------------

Pane 2 (half of the width screen) | Pane 3 (half of the width screen)

-----------------

Pane 4 (takes up width of the whole screen)

------------------

Pane 5 (half of the width screen) | Pane 6 (half of the width screen)

--------------------

Bottom of the screen

 

 

Is this achievable?  Initial location only seems to respond to DockedBottom, DockedRight, DockedLeft, and DockedTop.  How would I express "Docked BottomRight" for example, please?

Parents
No Data
Reply
  • 34690
    Verified Answer
    Offline posted

    Hello Christian,

    To achieve the desired layout of the panes in the DockManager, I have added four SplitPanes to it. If you set each SplitPane’s original location to DockedTop, they will all be the width of the screen, and they will all dock directly under one another. Then, you can set the height of the SplitPane and add the desired number of content panes to each.

    I have attached a sample project to demonstrate.

    Please let me know if you have any other questions or concerns on this matter.

    Sincerely,
    Andrew
    Developer Support I
    Infragistics Inc.
    www.infragistics.com/support

    XamDockManagerComplexLayoutCase.zip
Children