Paint.LaunchScreen.OnLaunchScreenComplete C# (CSharp) Méthode

OnLaunchScreenComplete() protected méthode

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

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