Hello
I have an application using the latest evaluation version of SandRibbon for Windows Forms.
I also have a usercontrol with a ribbon that has one tab on it. The tabs Modifier property is Public.
At a certain point, my application loads the usercontrol and i programaticaly add the controls tab into my main forms ribbon:
// add our storage ribbon tab
ribbonMain.Tabs.Add((RibbonTab)storageView.tabDevices);
// give focus to the storage context
ribbonMain.SetEditingContext("STORAGE");
The tab now appers ok (contextualy) but if my main Ribbon has a black color scheme, i cant get the new tab to also be black.
I have tried something like this, but the tab remains the default blue:
storageView.RibbonManager.Renderer.ColorScheme = ribbonManager.Renderer.ColorScheme;
Any help would be appreciated.