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