Hello,
When my customers make a single mouseclick on an appointment (per example in the UltraDayView), the border of the appointment is highlighted.Unfortunately my customers are not satisfied with that.
Is there a possibility to adjust the SelectedColor of an Appointment?
Per example:There is an Appointment with BackColor=Red and ForeColor=White.After the user makes a mouseclick on that Appointment, the BackColor gets Yellow and the ForeColor Black.
Thanks in advance,Patrick Pirzer
Hello Patrick,
You would be able to use the CalendarLook control, and attach it to the CalendarLook property of the DayView control. Once you do this, you are able to choose the appearance for the appointments like the following:
ultraCalendarLook1.AppointmentAppearance.BackColor = Color.Red; ultraCalendarLook1.AppointmentAppearance.ForeColor = Color.White;
ultraCalendarLook1.SelectedAppointmentAppearance.BackColor = Color.Yellow; ultraCalendarLook1.SelectedAppointmentAppearance.ForeColor = Color.Black;
Please let me know if you have any other questions on this matter.