I have a CalendarInfo object which is bound to a BindingList<T>. Adding an item to the binding list results in a new appointment being created. So far so good. Unfortunatly neither the AfterAppointmentAdded, nor the BeforeAppointmentAdded events get triggered when an appointment is added via the BindingList. Am I missing something?
Kind regards
Steffen
Hi Steffen,
The BeforeAppointmentAdded and AfterAppointmentAdded events are fired in response to user actions. The AppointmentDataInitialized event will fire when adding appointments through the BindingList<T>.
Let me know if you have any questions.