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
2549
Pane is behind other controls (partly not visible)
posted

Hi all,

I just started working with the WinDockManager and came across the following problem:

Using the following code I initialized my docking environment:

 

 

 

 

 

SuspendLayout();

 

 

 

DockAreaPane mainDockAreaLeft = new DockAreaPane(DockedLocation.DockedLeft, "mainDockAreaLeft");

 

 

 

DockableGroupPane mainGroupPaneLeft = new DockableGroupPane("mainGroupPaneLeft", "xxxx");;

mainDockAreaLeft.Panes.Add(mainGroupPaneLeft);

 

 

 

DockableControlPane xxxxPane = new DockableControlPane("xxxxPane");

xxxxPane.Control =

 

new ctr0400_XXXX();

mainGroupPaneLeft.Panes.Add(xxxxPane);

xxxxPane.FlyoutSize =

 

new Size(200, 0);

xxxxPane.Unpin();

udmMain.DockAreas.Add(mainDockAreaLeft);

udmMain.Visible =

 

true;

The outcome is shown on the following screenshots:
after initialization:

 

As you can see the dockingpane is behind all other controls.
When I click it somehow (pin might be the correct expression) it looks like this:

 

...until it looses focus or gets unpinned. It then reverts to the state shown in the first screenshot.

Please be so kind and advice how to work around this.
Any help is kindly appreciated,

best regards
Andy

Parents Reply Children
No Data