Paint.LaunchScreen.OnLaunchScreenComplete C# (CSharp) Method

OnLaunchScreenComplete() protected method

Raises the launch screen complete event.
protected OnLaunchScreenComplete ( EventArgs e ) : void
e System.EventArgs E.
return void
        protected virtual void OnLaunchScreenComplete(EventArgs e)
        {
            if (!this.exitInitiated)
            {
                this.exitInitiated = true;

                if (this.LaunchScreenComplete != null)
                {
                    this.LaunchScreenComplete(this, EventArgs.Empty);
                }
            }
        }