New to Telerik UI for WPF? Start a free 30-day trial
Refresh GridView After Language Change
Updated on Sep 15, 2025
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
RadGridView doesn't support dynamic localization. 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;