ComponentFactory.Krypton.Docking.KryptonDockableNavigator.OnPageDropDownClicked C# (CSharp) Method

OnPageDropDownClicked() protected method

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