New to Telerik UI for WinForms? Start a free 30-day trial
Update Recently Used Fonts list
Updated on May 7, 2026
This article shows how you can add font to the Recently Used Fonts section. This is useful when you want to preserve the Recently Used Fonts in the application settings and then restore them in the next session.
To update the fonts yu can use the UpdateRecentlyUsedFonts method and pass the font names to it.
Update the recently used fonts
C#
string[] fonts = new string[] { "Segoe UI", "Segoe Scrip", "Consolas", "Arial" };
var element = this.radFontDropDownList1.PopupEditorElement as RadFontPopupEditorElement;
element.UpdateRecentlyUsedFonts(fonts);