Language of context menu of ribbon bar of designer does not change
Posted: Fri Dec 18, 2009 8:29 am
Hello,
I change the language of the designer in GlobalEvents.LoadedDesigner by:
I open the desinger via stiReport.Design() method.
The designer appears in German, but the context menu of the ribbon bar still appears in English.
What did I do wrong?
Regards
munich
I change the language of the designer in GlobalEvents.LoadedDesigner by:
Code: Select all
StiDesignerControl desControl = sender as StiDesignerControl;
if (desControl != null)
{
StiMainMenuService mainMenuService = StiMainMenuService.GetService(desControl);
mainMenuService.SetLocalization("de.xml");
}
The designer appears in German, but the context menu of the ribbon bar still appears in English.
What did I do wrong?
Regards
munich