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
1175
How to change appearance of current date?
posted

is there any way to change the appearance of only the current date(not the selected date) in UltraWeekView, UltraMonthViewSingle, and UltraMonthViewMulti? Thank you, Jamie

Parents
No Data
Reply
  • 2094
    Offline posted

    You can also use "Appearances" which is the easiest way IMHO.

    Cheers
    Aaron

                Dim AP As Infragistics.Win.Appearance
                ' Create an Appearance for each day you want to look "different"
                AP = Me.CalendarInfo2.Appearances.Add("SpecialRedDay")
                AP.BackColor = Color.FromName("Red")

                Me.UltraCalendarLook1.DaysOfYearLook(Now().Date.Appearance = _
                Me.UltraCalendarLook1.Appearances("SpecialRedDay")

     


Children
No Data