Skip to main content

AppointmentFormControllerBase.PropertyChanged Event

Occurs when a value of any of the standard appointment properties handled by the AppointmentFormController changes.

Namespace: DevExpress.XtraScheduler.UI

Assembly: DevExpress.XtraScheduler.v14.2.Core.dll

#Declaration

public event PropertyChangedEventHandler PropertyChanged

#Event Data

The PropertyChanged event's handler receives an argument of the PropertyChangedEventArgs type. The following properties provide information specific to this event:

Property Description
PropertyName Gets the name of the property that changed.

#Remarks

The PropertyChanged event may be useful if you are implementing your own appointment editing form. Handle this event to be notified of changes occurring in the controller representations of the standard appointment properties such as Appointment.Subject, Appointment.Description, Appointment.Start, Appointment.HasReminder, etc.

#Implements

See Also