BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
private void SfSchedule_ScheduleClick(object sender, Syncfusion.UI.Xaml.Schedule.ScheduleClickEventArgs e)
{
if(e.Appointment == null)
{
ScheduleCommands.AddNewCommand.Execute(this.schedule);
}
else
{
ScheduleCommands.EditCommand.Execute(this.schedule);
}
}
private void schedule_AppointmentEditorOpening(object sender, AppointmentEditorOpeningEventArgs e)
{
} |