I am working on a desktop application using C#. I am using UltraDayView on a screen. I have disabled Auto AppointmentAdd and doubleClicking any appointment contro is transfered to another screen which inputs data for the appointment and saves it to database. Back on the scheduler screen i load appointments from database and the appointments are displayed in the UltraDayView.
User can double click the appointment to edit its contents.
The problem is user can select an appointment in the UltraDayView and resize it.
I want it not to get resized by the user.
I could not find a way.
Please suggest me a solution
Thnx in advance
Azif
Handle the BeforeAppointmentResized event, and set the Cancel property of the event arguments to true.
Hi
Thank you so much [Infragistics] Brian Fallon. The solution was really helpful. Thank you once again