Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
2549
UltraCalendarInfo, Holidays and localization
posted

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 regards
Andy 

Parents
No Data
Reply
  • 71886
    Verified Answer
    Offline posted

    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.

Children