I want to add an image to an appointment in an UltraDayView control.
I have the following code, but can't figure out where/how to assign the referenced ImageList.
I have tried in the designer and runtime with no luck.
I already have an ImageList Control on the WinForm.
// Assign Look-n-Fell // Infragistics.Win.Appearance look = new Infragistics.Win.Appearance(); look.Image = 3; a.Appearance = look; // Add Appointment // ocwCalendar.CalendarInfo.Appointments.Add(a);
Hi,
How to add multiple images for an appointment. I am intented to do which is simalar to adding small color boxes to the appointment if we select multiple catagories for an appointment in Outlook 2007.
Regards,
Sriganesh
There is no support for an ImageList. Assign a reference to the image itself to the Appearance.Image property, for example:
look.Image = this.imageList1.Images[3];