Bloom.SplashScreen._fadeOutTimer_Tick C# (CSharp) Method

_fadeOutTimer_Tick() private method

private _fadeOutTimer_Tick ( object sender, EventArgs e ) : void
sender object
e System.EventArgs
return void
        private void _fadeOutTimer_Tick(object sender, EventArgs e)
        {
            if (Opacity <= 0)
            {
                //Close();
                //if were were showing a dialog (like to choose a new project), Close would close that dialog too!
                //I tried setting the splashform.owner to the dlg, but that wasn't allowed.
                Hide();
            }
            Opacity -= 0.20;
        }