ComponentFactory.Krypton.Docking.KryptonDockingManager.OnShowPageContextMenu C# (CSharp) Method

OnShowPageContextMenu() protected method

Raises the ShowPageContextMenu event.
protected OnShowPageContextMenu ( ContextPageEventArgs e ) : void
e ContextPageEventArgs An ContextPageEventArgs containing the event args.
return void
        protected virtual void OnShowPageContextMenu(ContextPageEventArgs e)
        {
            if (ShowPageContextMenu != null)
                ShowPageContextMenu(this, e);
        }
KryptonDockingManager