New to Telerik UI for WPFStart a free 30-day trial

Refresh GridView After Language Change

Updated on Sep 15, 2025

Environment

Product Version2022.2.621
ProductRadGridView 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;
In this article
EnvironmentDescriptionSolution
Not finding the help you need?
Contact Support