Comments: ** Comment from web user: BoucherS **
Hi,
Go in file Xceed.Wpf.AvalonDock.DockingManager.cs,
in method "StartDraggingFloatingWindowForPane"
and replace :
```
if( fwWidth == 0.0 )
fwWidth = paneAsWithActualSize.ActualWidth;
if( fwHeight == 0.0 )
fwHeight = paneAsWithActualSize.ActualHeight;
```
with
if( fwWidth == 0.0 )
fwWidth = paneAsWithActualSize.ActualWidth + 10; //10 includes BorderThickness and Margins inside LayoutAnchorableFloatingWindowControl.
if( fwHeight == 0.0 )
fwHeight = paneAsWithActualSize.ActualHeight + 10; //10 includes BorderThickness and Margins inside LayoutAnchorableFloatingWindowControl.
――――
_Get more controls, features, updates and technical support with [Xceed Toolkit Plus for WPF](https://wpftoolkit.codeplex.com/wikipage?title=Compare%20Editions)_