Hello,
Is there a way to change the captions of the ultratoolbar on the ultraprintpreviewdialog? I need it to be in Greek - since I am in Greece... - but I can not find a way. I've tried to override the ultratoolbars of the ultraprintpreviewdialog like this:
this.ultraPrintPreviewDialog1.ToolbarsManager.Tools["File"].SharedProps.Caption = "Αρχείο";
but it doesn't work.
You can use the ResourceCustomizer to localize/modify the strings displayed. The following page discusses this in further detail - http://help.infragistics.com/Help/NetAdvantage/WinForms/2009.1/CLR2.0/html/Win_Customizing_Assembly_Resource_Strings.html.
These pages list the available resource strings for the UltraPrintPreviewDialog and the Misc assembly (which is where the UltraPrintPreviewControl is defined):
http://help.infragistics.com/Help/NetAdvantage/WinForms/2009.1/CLR2.0/html/WinPrintPreviewDialog_Resource_Strings.html
http://help.infragistics.com/Help/NetAdvantage/WinForms/2009.1/CLR2.0/html/WinMisc_Resource_Strings.html
Great! Thanks a lot!