Bloom.Shell.ReallyComeToFront C# (CSharp) Method

ReallyComeToFront() public method

we let the Program call this after it closes the splash screen
public ReallyComeToFront ( ) : void
return void
        public void ReallyComeToFront()
        {
            //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();
            BringToFront();
            TopMost = false;

            _finishedLoading = true;
        }