Completed
Last Updated: 21 Nov 2014 15:09 by ADMIN
ADMIN
Dimitar
Created on: 14 Nov 2014 14:37
Category: RibbonBar
Type: Bug Report
0
FIX. RadRibbonBar - the appliction theme is applied to the tabs popup even when the EnableApplicationThemeName property is set to false.
To rperoduce:
- Set the themes as follows:
var theme = new Office2010BlackTheme();
new Telerik.WinControls.RadControlSpy.RadControlSpyForm().Show();
ThemeResolutionService.ApplicationThemeName = theme.ThemeName;

this.radRibbonBar1.ElementTree.EnableApplicationThemeName = false;
this.radRibbonBar1.ThemeName = "ControlDefault";

- Start and collapse the ribbon tabs. 
- Click on a tab to show its controls.

Workaround: Use the ApplyThemeToControlTree method instead of settig the ApplicationThemeName property.
ThemeResolutionService.ApplyThemeToControlTree(this, "Windows");
0 comments