Details about the context menu about to be shown when clicking the drop down button on a KryptonDateTimePicker.
Inheritance: CancelEventArgs
 /// <summary>
 /// Raises the DropDown event.
 /// </summary>
 /// <param name="e">An DateTimePickerDropArgs containing the event data.</param>
 protected virtual void OnDropDown(DateTimePickerDropArgs e)
 {
     if (DropDown != null)
         DropDown(this, e);
 }
 private void OnDateTimePickerDropDown(object sender, DateTimePickerDropArgs e)
 {
     OnDropDown(e);
 }