Hi all,I try to translate the word "Holidays:" that is shown in the tooltip if I hover the mouse over a day that includes a holiday.
I checked the resource strings for UltraWinSchedule (Infragistics.Win.UltraWinSchedule.Resources.Customizer), but I couldn't find any reference to this word.
Is there a way to translate this somehow?
Any help is kindly appreciated,best regardsAndy
Hi Boris,thanks a ton, it works like a charm ;)
Have a great week and best regardsAndy
Hello Andy,
A possible approach to achieve the desired behavior could be handling the 'BeforeDIsplayDayToolTip' event and do something like the following:
private void ultraMonthViewMulti1_BeforeDisplayDayToolTip(object sender, Infragistics.Win.UltraWinSchedule.DayToolTipEventArgs e) { e.ToolTip = "Customized"; }
Please do not hesitate to contact us if you need any additional assistance.