Can AvalonDock floating windows be made to not be "Always On Top"?

In connection with my previous question on how to make floating windows independent of the main DockingManager , it seems to be here, but hopefully simpler:

Can AvalonDock floating windows not be "Always on top" of the main DockingManager window?

I rummaged through the AvalonDock source code , trying to find a way to do this, but I did not find anything else that works.

Ideally, I get what has the same effect as Visual Studio Tools > Options > Environment > Tabs and Windows > Floating tool windows always stay on top of the main window(available, at least for VS2013 and VS2015).

+4
source share
1 answer

I was looking for answers to the same questions.

, .

dockingManager FloatingWindows, - :

dockingManager.FloatingWindows.ToList().ForEach(floatingWindow =>
{
    floatingWindow.Owner = null;
    floatingWindow.ShowInTaskbar = true;
});
0

All Articles