We use UltraDockManager and now we have situation:
Main form contains floating panes and docked bottom panes, if user selects panes docked bottom
all floating panes should be moved behind the main window or perhaps behind the docked panes.
See the picture, if user selects 'Panel 1' it should be fully visible.
Is there a way for 'Panel 2' to go behind the main form window or behind 'Panel 1'?
We're having the same issue using UltraDockManager. The floating panels are always above the main window. Is there any setting I'm missing?
Thanks,Vitaly
Hello,
I have researched your scenario and I would suggest an approach like the following:
private void Form1_GotFocus(object sender, EventArgs e) { ultraDockManager1.ControlPanes[1].Close(); } private void Form1_LostFocus(object sender, EventArgs e) { ultraDockManager1.ControlPanes[1].Show(); }
private void Form1_GotFocus(object sender, EventArgs e)
{
ultraDockManager1.ControlPanes[1].Close();
}
private void Form1_LostFocus(object sender, EventArgs e)
ultraDockManager1.ControlPanes[1].Show();
Please note, we are making efforts to ensure all posts are addressed by an Infragistics expert. We believe that the other community members could benefit from this thread as well.
Feel free to write me if you need further assistance.