Я хочу изменить заголовок каждой встречи , которую я имею вместо отображения времени приложения
Я пробовал InitAppointmentDisplayText
событие, но оно только меняет всплывающую подсказку приложения
private void schedulerControl1_InitAppointmentDisplayText(object sender, AppointmentDisplayTextEventArgs e)
{
e.Text = string.Format("Schedule: {0}, Time: {1}", e.Appointment.Description, e.Appointment.Start.ToShortTimeString());
e.Description = string.Format("Schedule: {0}, Time: {1}", e.Appointment.Description, e.Appointment.Start.ToShortTimeString());
}