Пример #1
0
 /// <summary>
 /// Handles the <see cref="EnhancedMonthCalendar.ActiveDateChanged"/> event.
 /// </summary>
 /// <param name="sender">
 /// The sender.
 /// </param>
 /// <param name="e">
 /// A <see cref="ActiveDateChangedEventArgs"/> that contains the event data.
 /// </param>
 private void EnhancedMonthCalendarActiveDateChanged(object sender, ActiveDateChangedEventArgs e)
 {
     this.OnActiveDateChanged(e);
 }
 /// <summary>
 /// Raises the <see cref="ActiveDateChanged"/> event.
 /// </summary>
 /// <param name="e">
 /// A <see cref="ActiveDateChangedEventArgs"/> that contains the event data.
 /// </param>
 private void OnActiveDateChanged(ActiveDateChangedEventArgs e)
 {
     if (this.ActiveDateChanged != null)
     {
         this.ActiveDateChanged(this, e);
     }
 }