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

OnPageLoading() protected method

Raises the PageLoading event.
protected OnPageLoading ( DockPageLoadingEventArgs e ) : void
e DockPageLoadingEventArgs An DockPageLoadingEventArgs containing event data.
return void
        protected virtual void OnPageLoading(DockPageLoadingEventArgs e)
        {
            if (PageLoading != null)
                PageLoading(this, e);
        }
KryptonDockingManager