Following the rules and procedures stated on your documentation, I've localized a RadGridView using ResourceManager, in this way:
created the local resource files (see attached Capture01.png for resx file for italian language)
created a setting "ChosenCulture" in Settings for defining the startup default culture, set to "it-IT"
on the Window_Loaded event, set the localization with the following code:
The GridView is localized, but the following elements (at least the ones I've found till now) don't change their text, as you can see in the atteched picture:
GridViewGroupPanelText, GridViewGroupPanelTopTextGrouped, GridViewFilterMatchCase
TIA
Ubaldo
created the local resource files (see attached Capture01.png for resx file for italian language)
created a setting "ChosenCulture" in Settings for defining the startup default culture, set to "it-IT"
on the Window_Loaded event, set the localization with the following code:
LocalizationManager.DefaultResourceManager = ContiACasa.My.Resources.LocalResources.ResourceManager
LocalizationManager.DefaultCulture =
Nothing
Thread.CurrentThread.CurrentUICulture =
New
CultureInfo(My.Settings.ChosenCulture)
Thread.CurrentThread.CurrentCulture =
New
CultureInfo(My.Settings.ChosenCulture)
GridViewGroupPanelText, GridViewGroupPanelTopTextGrouped, GridViewFilterMatchCase
TIA
Ubaldo