Hi Caleb Kliewer
Thank you for contacting Syncfusion support.
Please find the details in below
|
Query |
Response |
|
Change the blue color of the docking header |
We can achieve your query “Change the BackColor of Docking Header of Docked Windows” by setting the below properties.
HeaderBackground: Used to set the Header Background color of DockingManager docked windows.
SelectedHeaderBackground: Used to set the Header Background color of Selected docking Window.
HeaderMouseOverBackground: Used to set the Header Background color for when hovering docked window. Please make use of the below code Example.
Code Example: [Xaml]
|
<syncfusion:DockingManager x:Name="dockingmanager" HeaderBackground="Gray" HeaderMouseOverBackground="DarkBlue" SelectedHeaderBackground="LightBlue" DockFill="True" >
<ContentControl syncfusion:DockingManager.Header="MainWindow" syncfusion:DockingManager.State="Dock"/>
<ContentControl syncfusion:DockingManager.Header="Properties" syncfusion:DockingManager.SideInDockedMode="Right" />
</syncfusion:DockingManager> |
|
|
Remove Header |
You can hide the header of the particular docked window by enabling NoHeader property. Please make use of the below code Example.
Code Example: [Xaml]
|
<syncfusion:DockingManager x:Name="dockingmanager" HeaderBackground="Gray" HeaderMouseOverBackground="DarkBlue" SelectedHeaderBackground="Green" DockFill="True" >
<ContentControl syncfusion:DockingManager.NoHeader="True" syncfusion:DockingManager.State="Dock" syncfusion:DockingManager.SideInDockedMode= "Left" />
<ContentControl syncfusion:DockingManager.Header="MainWindow" syncfusion:DockingManager.State="Dock"/>
<ContentControl syncfusion:DockingManager.Header="Properties" syncfusion:DockingManager.SideInDockedMode="Right" />
</syncfusion:DockingManager> |
|
We have also prepared the sample for the same. It can be downloaded from the below link,
Please try this above solution and let us know if it is helpful.
Regards,
Mallika