Skip to main content

How to: Set Default Values for a New Appointment (legacy)

  • 2 minutes to read

Note

You are viewing documentation for the legacy WPF Scheduler control. If you’re starting a new project, we strongly recommend that you use a new control declared in the DevExpress.Xpf.Scheduling namespace. If you decide to upgrade an existing project in order to switch to the updated scheduler control, see the Migration Guidelines document.

This example demonstrates how to use the SchedulerControl.InitNewAppointment event, which occurs in all cases before a new appointment is created. This event is useful, for instance, when it is necessary to initialize the newly created appointments with values other than the standard defaults.

The following code changes the all-day option for the newly created appointments to true, sets its label to Important and location - to “New office”.

using DevExpress.XtraScheduler;
// ...

private void schedulerControl1_InitNewAppointment(object sender, AppointmentEventArgs e) {
   // Make the appointment all-day.
   e.Appointment.AllDay = true;

   // Set its label to "Important".
   e.Appointment.LabelKey = 1;

   // Set its location.
   e.Appointment.Location = "New office";
}