Hi,
I need to change the header caption of the NewRecord element that is shown in the XamDataCards WPF control, by default, the text is 'Add New Record', could you please show me how I can change this text?
Thanks in Advance.
Hello David,
I am just checking if my last reply was helpful for you.
If you require any further assistance please do not hesitate to ask.
Sincerely,
Svetla
Hello David Aimar,
Thank you for your post. I have been looking through it and I suggest you may see our online help and the following topic in particular:
http://help.infragistics.com/NetAdvantage/WPF/2013.1/CLR4.0/?page=GeneralConcepts_Customizing_Resource_Strings_for_WPF_Only_control.html
The localizable data presenter controls strings are listed here:
http://help.infragistics.com/NetAdvantage/WPF/2013.1/CLR4.0/?page=Resource_Strings_DataPresenter_Resource_Strings.html
In order to change the Add New Record title, you should add the following code in your application code-behind:
Infragistics.Shared.ResourceCustomizer rc;
rc = Infragistics.Windows.DataPresenter.Resources.Customizer;
rc.SetCustomizedString("Card_AddNewRecordTitle", "Add New Customized Title");
Looking forward for your reply.
Svetla Boykova