
There seems to be a problem with the display of the docksite popup when only one document window is present. What I mean is if I only have one document tab and tear that tab off, the popup to "redock" the tab is behind the document window. So I'm forced to drag the tab way off of the app to see the popup again to redock. This seems like very odd behavior. Is there a way around it?
The docksite xaml:
The docksite xaml:
<docking:DockSite x:Class="MyApp.Framework.WorkspaceDocumentGroupView"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:docking="http://schemas.actiprosoftware.com/winfx/xaml/docking"
xmlns:attachedProps="clr-namespace:MyApp.Framework.AttachedProperties"
CanDocumentWindowsRaft="True"
DocumentItemsSource="{Binding Items}"
attachedProps:DockSiteViewModelBehavior.IsManaged="True">
<docking:Workspace>
<docking:TabbedMdiHost IsImageOnTab="True" IsCloseButtonOnTab="True"/>
</docking:Workspace>
</docking:DockSite>