Search code examples
c#localizationteleriksilverlight-5.0radtreeview

RadTreeView Localization resourcekey (Telerik, Silverlight)


I want to translate Drag Tooltip (Drop in, Drop after, Drop before) in RadTreeView. how can I do that?

I am using resource file and I successfully translated RadGridView group panel and other in built in visual structures.

I need Resource Key for Drop in, Drop after, Drop before texts.


Solution

  • After i post this on telerik forum they gave me an answer and it worked.

    "The resources are not apply because the new LocalizationManager needs to be defined before the create of the application's UI. For example, you can add it just before the InitializeComponent() method."

    public MainPage()
    {
    

    LocalizationManager.Manager = new LocalizationManager() { ResourceManager = Resource1.ResourceManager };

    InitializeComponent();
    

    .....

    }
    

    Here is the link to that post