Hello. I need to localize a few strings from the UltraTabbedMdi and I can't find anywhere the keys from the resources:
This happens to me with every control I start using, I must spend lot of time searching for the resources keys.. Almost every link in the forum is broken (I'm guessing there were changes in the help site from infragistics). Here there is an example: http://help.infragistics.com/Help/NetAdvantage/WinForms/2009.2/CLR2.0/html/Win_Customizing_Assembly_Resource_Strings.html.
There should be some page really easy to find containing all resources keys (and description) grouped by control. If there is PLEASE LET ME KNOW ABOUT IT!!
Thanks,
Diego
Hello Diego,
You are right, here I believe is the page you are looking for:
http://help.infragistics.com/Help/NetAdvantage/WinForms/2011.2/CLR2.0/html/WinTabbedMdi_Resource_Strings.html.
Please do not hesitate to contact us if you need any additional assistance.
No, as I said those aren't the resources I need.
Hello,
Here is the link I believe you are looking for:
http://help.infragistics.com/Help/NetAdvantage/WinForms/2011.2/CLR2.0/html/Win_Resource_Strings.html.
So you could do something like this for the first issue:
Infragistics.Shared.ResourceCustomizer rc = Infragistics.Win.Resources.Customizer; rc.SetCustomizedString("TabManagerScrollPrevious", "test"); rc.SetCustomizedString("TabManagerScrollNext", "test2");
For the second, if you have 'WinDockManager', you could try:
http://help.infragistics.com/Help/NetAdvantage/WinForms/2011.2/CLR2.0/html/WinDockManager_Resource_Strings.html.
rc.SetCustomizedString("NavigatorDefaultMdiListCaption", "test3");
The following links might also be helpful to you:
http://help.infragistics.com/Help/NetAdvantage/WinForms/2011.2/CLR2.0/html/Win_Assembly_Resource_Strings.html
http://help.infragistics.com/Help/NetAdvantage/WinForms/2011.2/CLR2.0/html/Win_Customizing_Assembly_Resource_Strings.html.
Please do not hesitate to ask if something comes up.
Thanks! This worked.
A little change I'd to do to be able to customize the MdiListCaption:
Infragistics.Shared.ResourceCustomizer rc = Infragistics.Win.UltraWinDock.Resources.Customizer;
So the whole code must be:
Infragistics.Shared.ResourceCustomizer rc = Infragistics.Win.Resources.Customizer;rc.SetCustomizedString("TabManagerScrollPrevious", "test");rc.SetCustomizedString("TabManagerScrollNext", "test2");rc = Infragistics.Win.UltraWinDock.Resources.Customizer;rc.SetCustomizedString("NavigatorDefaultMdiListCaption", "test3");