Yaircc.MainForm.ShowForm C# (CSharp) Method

ShowForm() private method

Hide the splash screen and show the main form.
private ShowForm ( ) : void
return void
        private void ShowForm()
        {
            this.InvokeAction(() =>
                {
                    this.Hide();
                    this.splashScreen.Close();
                    this.splashScreen.Dispose();
                    this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Sizable;
                    this.WindowState = FormWindowState.Normal;
                    this.Show();
                    this.ShowInTaskbar = true;
                });
        }
MainForm