I have a GridViewResource
that localize the telerik wpf gridview and set in the app.xaml.cs with the below code
public App()
{
LocalizationManager.Manager = new LocalizationManager() {
ResourceManager = SR.GridViewResource.ResourceManager };
}
Also, I have DataPagerResource
that localize wpf datapager
but I don't know how to set this two r开发者_高级运维esource in the app.xaml.cs
(Both GridViewResource
and DataPagerResource
)
you should create and assign a custom localization manager, if I understand what you really want to do.
please refer to the official Telerik Documentation:
Localization of RadControls for WPF
精彩评论