Codejock Forums Homepage
Forum Home Forum Home > Codejock Products > ActiveX COM > Docking Pane
  New Posts New Posts RSS Feed - [SOLVED]Move 3 Panes at the same time?
  FAQ FAQ  Forum Search   Events   Register Register  Login Login

[SOLVED]Move 3 Panes at the same time?

 Post Reply Post Reply
Author
Message
stuc View Drop Down
Groupie
Groupie


Joined: 05 May 2011
Status: Offline
Points: 20
Post Options Post Options   Thanks (0) Thanks(0)   Quote stuc Quote  Post ReplyReply Direct Link To This Post Topic: [SOLVED]Move 3 Panes at the same time?
    Posted: 10 November 2011 at 10:49am


Say I have a,b and c.   b is docked bottom of A, c is docked bottom of b .

b and c have no captions.

When moving Pane A,  can B and C get to move at the same time ?


I presume if its not bult in I will have to intercept the  docking manager_action and then move the panes to dock back wit the moved parent pane.

After extensive forums reading :S  i cant find how to  dock an existing pane to another pane other than DockingManager.createpane  .....


[solved]
Just in case someone else wonders about this


Private Sub DockingPaneManager_Action(ByVal Action As XtremeDockingPane.DockingPaneAction, ByVal Pane As XtremeDockingPane.IPane, ByVal Container As XtremeDockingPane.IPaneActionContainer, Cancel As Boolean)

If (Action = PaneActionDocked) Then
            ' now redock the associated panes
            DockingPaneManager.DockPane f, f.MaxTrackSize.Width, f.MaxTrackSize.Height, DockBottomOf, c
            DockingPaneManager.DockPane E, E.MaxTrackSize.Width, E.MaxTrackSize.Height, DockBottomOf, f
        End If


End Sub




Back to Top
 Post Reply Post Reply
  Share Topic   

Forum Jump Forum Permissions View Drop Down

Forum Software by Web Wiz Forums® version 12.04
Copyright ©2001-2021 Web Wiz Ltd.

This page was generated in 0.125 seconds.