Hi,
1) - How to change more appointments icons (up & down) in ultraDayView?
2) - How to change only more appointments icons color?
Regards,
Lello
There are Application Styling roles defined for it; see ScheduleMoreActivityIndicatorBase/ScheduleMoreActivityIndicatorUp/ScheduleMoreActivityIndicatorDown. You can change the foreground color, or specify an image to be drawn instead.
using Infragistics.Win.UltraWinSchedule.DayView;
Office2007MoreItemsIndicatorUIElement.elementSize = new Size (16, 11); Office2007MoreItemsIndicatorUIElement.defaultBackColorNormal = System.Drawing.Color.Red; Office2007MoreItemsIndicatorUIElement.defaultBorderColor = System.Drawing.Color.Black;
Thanks!