Bloom.SplashScreen.SplashScreen_Load C# (CSharp) Method

SplashScreen_Load() private method

private SplashScreen_Load ( object sender, EventArgs e ) : void
sender object
e System.EventArgs
return void
        private void SplashScreen_Load(object sender, EventArgs e)
        {
            //try really hard to become top most. See http://stackoverflow.com/questions/5282588/how-can-i-bring-my-application-window-to-the-front
            TopMost = true;
            Focus();
            var channel = ApplicationUpdateSupport.ChannelName;
            _channelLabel.Visible = channel.ToLowerInvariant() != "release";
            _channelLabel.Text = LocalizationManager.GetDynamicString("Bloom", "SplashScreen." + channel, channel);
            BringToFront();
        }