Hello:
I have only two DataPresenter Resource Strings on XAML (igDP= xmlns:igDP="http://infragistics.com/DataPresenter")
<Style TargetType="{x:Type igDP:GroupByAreaMulti}"> <Setter Property="Prompt1" Value="NEW VALUE" /> <Setter Property="Prompt2" Value="NEW VALUE2" /> </Style>
But I can't find others than:
Outlook_GroupByMode_Description_LastMonth, Outlook_GroupByMode_Description_LastWeek, SummaryCalculator_Average_Description...
Where are them? Can you update http://help.infragistics.com/Help/NetAdvantage/WPF/2010.1/CLR3.5/html/WPF_DataPresenter_Resource_Strings.html with the namespaces where we can find them?
Thanks
Best Regards
Hello Noe,
Thank you for your feedback. I am glad that you resolved your issue and I believe that other community members may benefit from this as well.
Thanks again.
Thanks for your info but this resource strings haven't their namespaces.
Finally, I solved this issue:
1. First I created a Resources file with all Resource Strings
2. Then I created a method with a code like this (and called it only one time before load views from our app for example:)
........ ResourceSet resourceSet = ABK.Infraestructure.Properties.Resources.ResourceManager.GetResourceSet(culture, true, true); foreach (DictionaryEntry entry in resourceSet) { Infragistics.Windows.DataPresenter.Resources.Customizer.SetCustomizedString(entry.Key.ToString(), entry.Value.ToString()); }
Best Regards,
Hello,
Here is a link to the XamDataGrid’s Resource Strings:
http://help.infragistics.com/Help/NetAdvantage/WPF/2011.1/CLR4.0/html/WPF_DataPresenter_Resource_Strings.html