4

I am using AvalonDock in a PRISM based WPF application. My Document Panes have the ability to float (CanFloat = "true"). But the floating windows are not shown in TaskBar. Is there any way that I can make it available in TaskBar (ShowTaskBar = "true").

I tried traversing the VisualTree to get the root Window to set this property. But it is being modified in their source code.

Any help is much appreciated.

Jawahar
  • 4,775
  • 1
  • 24
  • 47

1 Answers1

3

I achieved it in this way,

dockingManager.FloatingWindows.ToList().ForEach(window =>
            {
                window.ShowInTaskbar = false;
            });
Jawahar
  • 4,775
  • 1
  • 24
  • 47