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 the UltraMonthview and UltraWeekViews's Headers' backcolor
posted

 Hi

I am using infargistics 8.3 this problem starts after going to 8.3. pleas check it.

I want to set every owner's color specifically and i have used the following lines:

 

// For - loop
Infragistics.Win.UltraWinSchedule.Owner owner = this.CalendarInfo.Owners["owner Key")

                            physicianColor = Color.FromArgb("Some Specific Color");
                            
                            owner.NonWorkingHourTimeSlotAppearance.BackColor = Color.WhiteSmoke;
                            owner.WorkingHourTimeSlotAppearance.BackColor = physicianColor;                            
                            owner.DayAppearance.BackColor = physicianColor;                            
                            owner.HeaderAppearance.BackColor = physicianColor;

// End for-loop

these lines of code are not working.