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
144
Preventing floating panes from always being on top
posted

When I float ContentPanes in my application they are always displayed on top of the main window. I would like to change this behavior so that if the user clicks the main window it will come to the top, over the floating panes.

I found the Topmost property on PaneToolWindow, but it doesn't apply here. What do I need to do to implement the desired behavior?

Parents
No Data
Reply
  • 54937
    Verified Answer
    Offline posted

    TopMost is a property similar to that on the Window class. When true it means that the window will be above all other non-topmost windows. That is not the default behavior or the behavior you are seeing since by default TopMost is false. The floating panes of the XDM are owned windows and as such the owned window is always above the owner (the window that hosts the XDM). We currently do not support a mode where the panes are not owned windows. You may want to submit a suggestion for adding this capability.

Children