Hi,
how do I replace the appointment creation/edit/etc. dialogs with truly custom implementations, i.e. not only template changes?
It seems that I can add a handler for the ShowDialog event. But setting the EventArg property Handled to true doesn't suppress the default dialog handling. Can I simply do my custom UI handling and then Cancel the event, e.g.
Thanks,
Alexander
how do I replace the appointment creation/edit/etc. dialogs with truly custom implementations, i.e. not only template changes?
It seems that I can add a handler for the ShowDialog event. But setting the EventArg property Handled to true doesn't suppress the default dialog handling. Can I simply do my custom UI handling and then Cancel the event, e.g.
void SchedulerView_ShowDialog(object sender, ShowDialogEventArgs e){ // Here goes the custom modal UI // ... e.Cancel = true;}Thanks,
Alexander