Based on discussion https://wpftoolkit.codeplex.com/discussions/584604.
Comments: ** Comment from web user: BoucherS **
Comments: ** Comment from web user: BoucherS **
Fixed in v2.7.
You will be able to do this in App.xaml ;
```
<Style TargetType="{x:Type xcad:LayoutDocumentFloatingWindowControl}">
<Setter Property="BorderThickness"
Value="10" />
<Setter Property="BorderBrush"
Value="Green" />
</Style>
<Style TargetType="{x:Type xcad:LayoutAnchorableFloatingWindowControl}">
<Setter Property="BorderThickness"
Value="10" />
<Setter Property="BorderBrush"
Value="Red" />
<Setter Property="Background"
Value="Blue" />
</Style>
```