Hi all,
Mouse button right click on a ribbon tool popups menu with offering "Show Quick Access Toolbar Below the Ribbon", "Minimize the Ribbon", ...
We can catch the "BeforeToolbarListDropdown" event to choose to display or not menus (found on this forum), but I do not manage to find how to translate Menus Items ...
Is there a way to translate this popup menu ?
thanks in advance
Hi,
this link might help:
http://help.infragistics.com/Help/NetAdvantage/NET/2008.2/CLR2.0/html/Win_Assembly_Resource_Strings.html
Thank you for your reply; it's exactly what I'm looking for: "Resources.Customizer" by control
As an example for other, like me, how do not find it: (translation in French)if (Application.CurrentCulture.TwoLetterISOLanguageName.ToLower() == "fr"){Infragistics.Win.UltraWinToolbars.Resources.Customizer.SetCustomizedString("MinimizeRibbon", "Réduire le ruba&n");Infragistics.Win.UltraWinToolbars.Resources.Customizer.SetCustomizedString("QuickAccessToolbarBelowRibbon", "Afficher la barre d'outils Acc&ès rapide sous le ruban");Infragistics.Win.UltraWinToolbars.Resources.Customizer.SetCustomizedString("QuickAccessToolbarAboveRibbon", "Afficher la barre d'outils Accès ra&pide au-dessus du ruban");}else{Infragistics.Win.UltraWinToolbars.Resources.Customizer.ResetAllCustomizedStrings();}