New to Telerik UI for WPF? Start a free 30-day trial
Refresh GridView After Language Change
Updated on Jan 20, 2026
Environment
| Product Version | 2022.2.621 |
| Product | RadGridView for WPF |
Description
How to refresh the UI of RadGridView when the current culture is changed, thus changing the language.
Solution
Since version 2025.4.1320 of Telerik UI for WPF, RadGridView supports dynamic localization out of the box. Use the approach below only for older versions.
RadGridView doesn't support dynamic localization in versions prior 2025.4.1320. To get the desired effect, the GridView's ControlTemplate should be reset after the current culture changed.
C#
LocalizationManager.Manager.Culture = newCulture;
var template = this.gridView.Template;
this.gridView.Template = null;
this.gridView.Template = template;