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

OnRecreateLoadingPage() protected method

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