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
400
floating panes that aren't always on top
posted

Is there a way to create floating panes that aren't always on top of the rest of the application? I have a Desktop form that uses an UltraTabbedMdiManager to manage MdiChild forms. One of these MdiChildren is a form that contains an UltraDockManager. Floating panes I create with that UltraDockManager seem to be always on top of the rest of the application. Is there a way to prevent this behavior?

Parents
No Data
Reply
  • 44743
    posted

    There isn't an easy way to do this. You could try to iterate the OwnedForms collection of the form containing the dock manager, create a collection of the owned forms which are instances of Infragistics.Win.UltraWinDock.FloatingWindowContainer, then iterate that new collection and set their Owner properties to null. However, I'm not sure if anything in dock manager relies on that container having an Owner property set, so it is possible this will not work.

Children