I have this to change the tabs colors when selected/unselected
{
.....
this.radDock1.ActiveWindowChanging += new DockWindowCancelEventHandler(radDock1_ActiveWindowChanging);
this.radDock1.ActiveWindowChanged += new DockWindowEventHandler(radDock1_ActiveWindowChanged);
}
void radDock1_ActiveWindowChanged(object sender, DockWindowEventArgs e)
{
SizeAndColorSelectedDocWindowTab(e.DockWindow.TabStripItem, Color.LightBlue, Color.CornflowerBlue);
}
void radDock1_ActiveWindowChanging(object sender, DockWindowCancelEventArgs e)
{
SizeAndColorUnSelectedDocWindowTab(e.OldWindow.TabStripItem, Color.CornflowerBlue, Color.DarkBlue);
}
But how can I change the color of the Tab title? when unselected the text almost disappears, I would like to change to a whiter color
Also, this works when the children are Tabbed, how can I implement something similar on titlebar when DockPosition.Left (or anything else than tabbed) ?