I’ve created a Spash-form that shows and hides while my main form initializes. When I closes the splash-form my main window is paced behind other applications in Windows.
How can I force my application form to be the “on top application”?
I’ve tried all these functions:
this.Activate();
this.Focus();
this.Show();
this.WindowState = FormWindowState.Maximized;
this.BringToFront();
this.UpdateZOrder();
How can I force my application form to be the “on top application”?
I’ve tried all these functions:
this.Activate();
this.Focus();
this.Show();
this.WindowState = FormWindowState.Maximized;
this.BringToFront();
this.UpdateZOrder();