Hello,
I am using the UltraWinSchedule control and i am wondering if it is possible to show two colors in the following image at the selected range. Before 6 P.M. the background color is different and it is not possible to see the difference when you select a range.
Thanks in advance!
Thanks for your response. Let me know if you have any questions.
Regards
Georgi
Hello Georgi,
First, thanks for your reply. I've been in a meeting all day so I hope I can make some time tomorrow to try out your suggestion. Will get back to you when I do!
Hello Daan,
Have you been able to resolve your issue ? Did you have a time to try my suggestions.
Let me know if you have any quesstions
There are few possible approaches to achieve desired behavior. Maybe you could try:
Option 1: Using the properties:
ultraDayView1.SelectedTimeSlotAppearance.BackColor = Color.Yellow;
ultraDayView1.WorkingHourTimeSlotAppearance.BackColor = Color.White;
ultraDayView1.NonWorkingHourTimeSlotAppearance.BackColor = Color.BlueViolet;
Please take a look at the attached video for more details.
Option 2: You could used UltraCalendarLook control together with your Schedule control. Please take a look in our online documentation for more details:
http://help.infragistics.com/Help/NetAdvantage/WinForms/2011.2/CLR2.0/html/WinCalendarLook.html
Option 3: You could used (or modify) your exsisting AppStyle. Just modify TimeSlot apperance
Option 4: You could used DrawFilter to modify desired properties.
Let me know if you have any questions