Hi Josh,
Based on your previous update we suspect that your
requirement is to update your database when you edit the appointments in SfSchedule
using the default editor available in the control. This can be achieved by
listening to “AppointmentEditorClosed” event of the
SfSchedule. For more information regarding the event please refer the below
link.
UG Link: http://help.syncfusion.com/wpf/sfschedule/event
Please find the Code snippet below
XAML:
<syncfusion:SfSchedule AppointmentEditorClosed="SfSchedule_AppointmentEditorClosed"/>
VB:
Private Sub
SfSchedule_AppointmentEditorClosed(sender As
Object, e As Syncfusion.UI.Xaml.Schedule.AppointmentEditorClosedEventArgs)
' Do Somthing
End Sub
If the above provided solution doesn’t satisfy your
requirement, then please let us know more information about your requirement so
that we could check on this further and provide you a possible solution.
Regards,
Saravanan A