Hi,
I have the following situation:
I am developing a timesheet calendar. The thing is that I want to specify the working times for each day along with a break time in between.Everyday can have different working times.
For example:
Monday 9:00-13:00(working time), 13:00-14:00 lunch break (non working time) , 14:00-18:00 (working time)Tuesday the same..Friday 9:00- 15:00 (working time) ONLY. the rest is non working time.Right now I am using
ultraCalendarInfo1.DaysOfWeek[dayOfWeek].IsWorkDay = true;
ultraCalendarInfo1.DaysOfWeek[dayOfWeek].WorkDayStartTime = new DateTime(1, 1, 1, startTime.Hour, startTime.Minute, 0);
}
else
{
No, there is no way to do what you describe here using the public object model. The following KB article demonstrates how to apply different colors to the TimeSlots using the IUIElementDrawFilter interface: http://devcenter.infragistics.com/Support/KnowledgeBaseArticle.aspx?ArticleID=5595.