コード例 #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="AppointmentMoveEventArgs"/> class.
 /// </summary>
 /// <param name="appointment">The appointment.</param>
 /// <param name="newDate">The new date.</param>
 /// <param name="control">The control.</param>
 public AppointmentMoveEventArgs(Appointment appointment, DateTime newDate, BaseScheduleControl control)
 {
     Appointment = appointment;
     NewDate     = newDate;
     Control     = control;
 }
コード例 #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="AppointmentEditEventArgs"/> class.
 /// </summary>
 /// <param name="appointment">The appointment.</param>
 /// <param name="control">The control.</param>
 public AppointmentEditEventArgs(Appointment appointment, BaseScheduleControl control)
 {
     Appointment = appointment;
     Control     = control;
 }
コード例 #3
0
 /// <summary>
 /// Initializes a new instance of the <see cref="AppointmentCreateEventArgs"/> class.
 /// </summary>
 /// <param name="date">The date.</param>
 /// <param name="control">The control.</param>
 public AppointmentCreateEventArgs(DateTime date, BaseScheduleControl control)
 {
     Date    = date;
     Control = control;
 }