Hi.
I wonder if its posible to Localize the UltraGanttView?
And if it is, where do i find the Resource String Name.
Thanks for the hlelp.
WinSchedule resource strings are here: http://help.infragistics.com/Help/NetAdvantage/WinForms/2010.1/CLR2.0/html/WinSchedule_Resource_Strings.html
It seems possible that neglected to include the listing for the UltraWinGanttView assembly with the product documentation...I attached a copy herein.
Thanks for the quick answer.
But I still don't find how to translate from "Task Name" to "Oppgave"
When i go to GridSettings and the to ColumnSettings, i get to the TaskColumnSettings Collection Editor, but even there i cant translate the name in the header.
Sorry for the bad English :-)
You would have to call the following method before InitializeComponent:
static private void SetColumnHeaderText( TaskField column, string text ){ string resourceName = string.Format("TaskProxy_PropertyDisplayName_Task.{0}", column ); Infragistics.Win.UltraWinGanttView.Resources.Customizer.SetCustomizedString( resourceName, text );}
Note that a property will be added for the column header text in a forthcoming service release, so you can set the property at design time.