So in DockingManager we do have this properties
- DocumentTabItemBackground
- DocumentTabItemSelectedBackground
- DocumentTabItemForeground
- DocumentTabItemSelectedForeground
but they seem to have no effect at all.
I tried it both in XAML
<layout:SfDockingManager DockFill="True" x:Name="dockMgr"
DocumentTabItemBackground="Black"
DocumentTabItemForeground="White"
DocumentTabItemSelectedBackground="White"
DocumentTabItemSelectedForeground="Black"
Loaded="SfDockingManager_Loaded">
and in code behind
dockMgr.DocumentTabItemBackground = new SolidColorBrush(Windows.UI.Color.FromArgb(255, 0, 0, 0));
dockMgr.DocumentTabItemForeground = new SolidColorBrush(Windows.UI.Color.FromArgb(255, 255, 255, 255));
dockMgr.DocumentTabItemSelectedBackground = new SolidColorBrush(Windows.UI.Color.FromArgb(255, 255, 255, 255));
dockMgr.DocumentTabItemSelectedForeground = new SolidColorBrush(Windows.UI.Color.FromArgb(255, 0, 0, 0));
but the background of the tabbed item always stays System Accent Color:
And, second question, how do i set the color of the tabbed panel itself?