Hello:
I need to translate all DataPresenter Resource Strings to spanish, but I want to know if there is any other way to translate like this:
Infragistics.Windows.DataPresenter.Resources.Customizer.SetCustomizedString("GroupByArea_Prompt1", "Zona de agrupamiento")
Is it possible to create a style and change these strings? Sth like this:
<Style TargetType="{x:Type igDP:XamDataGrid}">...........
Best Regards,
Hello Noe,
Thank you for your post. I have been looking into it and I can say that if you want to change the Resource Strings by creating a Style you have to create a Style for every element that you want to change and set its Property. For GroupByArea_Prompt1, you have to create a Style for the GroupByAreaMulti element and set the Property.
Hope this helps you.
Thank you very much!
I have tested this and it works!
<Style TargetType="{x:Type igDP:GroupByAreaMulti}"> <Setter Property="Prompt1" Value="Área de agrupamiento" />
..........
Best Regards