New to Telerik UI for WinForms? Start a free 30-day trial
FontDropDownList Localization
Updated over 6 months ago
RadFontDropDownList has only two string that can be localized and these are the groups header in the popup. Each string has a property that can be used for changing and localizing the default string. The following example shows how access these properties and change their values.
Localizing RadFontDropDownList
C#
var element = radFontDropDownList1.PopupEditorElement as RadFontPopupEditorElement;
element.AllFontsItemText = "All Fonts";
element.RecentlyUsedItemText = "Recently Used Fonts";