ComponentFactory.Krypton.Ribbon.KryptonRibbonGroupDateTimePicker.OnDropDown C# (CSharp) Method

OnDropDown() protected method

Raises the DropDown event.
protected OnDropDown ( DateTimePickerDropArgs e ) : void
e DateTimePickerDropArgs An DateTimePickerDropArgs containing the event data.
return void
        protected virtual void OnDropDown(DateTimePickerDropArgs e)
        {
            if (DropDown != null)
                DropDown(this, e);
        }