Hello,
In previous versions we can customize rafting window by defining our own style like follow:
<Style x:Key="{x:Type docking:RaftingWindow}" TargetType="{x:Type docking:RaftingWindow}">
<Setter Property="Title" Value="Raftable Content"/>
<Setter Property="IsTitleAutoUpdated" Value="true"/>
<Setter Property="TitleBarVisibility" Value="{x:Static docking:RaftingWindowTitleBarVisibility.Visible}"/>
<Setter Property="ShowInTaskbar" Value="true"/>
<Setter Property="Background" Value="Transparent" />
<Setter Property="Foreground" Value="{DynamicResource {x:Static themes:AssetResourceKeys.WorkspaceVeryDarkForegroundNormalBrushKey}}" />
<Setter Property="BorderBrush" Value="Red" />
<Setter Property="BorderThickness" Value="4" />
..
</Style>
Is it possible to achieve the similar for floating window?
Thanks.