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

OnShowWorkspacePageContextMenu() protected method

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