Hi!
I have an UltraMonthViewMulti. And I would like to load my own "new Appointment Dialog" instead of the Standard Dialog.
Could I do that?if not how can I find out the date after double clicking on a specific day?
TIA
Josef
Hello Josef,
There are different approaches to solve this task. Maybe one possible solution could be if you handle BeforeDisplayAppointmentDialog event of your UltraCalendarInfo. For example:
private void ultraCalendarInfo1_BeforeDisplayAppointmentDialog(object sender, DisplayAppointmentDialogEventArgs e)
{
e.Cancel =true;
AppointmentDialog customDialog = new customAppointmentDialog();
customDialog.ShowDialog();
}
public class customAppointmentDialog : AppointmentDialog
public customAppointmentDialog() {...... }
Let me know if you have any questions.
Regards
If you need any additional assistance don’t hesitate to ask.