Hi,How do i stop the user dragging/resizing the appointments?ThanksChris
But it is still showing SizeAll Cursor when it is over Apointment time.
How to disable showing sizeall cursor?
doh! of course.. that resize works perfect.. Whats more anoying is I was going to try that, dunno why i didn't in the end..thanks!
Hello Chris,
One thing that you could is try handling the following events of the UltraMonthViewSingle control:
ultraMonthViewSingle1.AppointmentResizing
and
ultraMonthViewSingle1.AppointmentsDragging
like:
void ultraMonthViewSingle1_AppointmentsDragging(object sender, AppointmentsDraggingEventArgs e) { e.Cancel = true; }
void ultraMonthViewSingle1_AppointmentResizing(object sender, AppointmentResizingEventArgs e) { e.Cancel = true; }
Please let me know if you have any other questions.