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
395
UltraMonthViewSingle stopping drag/resize appointments
posted

Hi,
How do i stop the user dragging/resizing the appointments?

Thanks
Chris

Parents
  • 20872
    Suggested Answer
    Offline posted

    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.

     

     

     

     

Reply Children