WindowsFormsApplicationBase.OnRun Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Provides the starting point for when the main application is ready to start running, after the initialization is done.
protected:
virtual void OnRun();
protected virtual void OnRun ();
abstract member OnRun : unit -> unit
override this.OnRun : unit -> unit
Protected Overridable Sub OnRun ()
Remarks
By default, before it enters the Windows Forms message loop, this method calls the OnCreateMainForm
(to create the application's main form) and HideSplashScreen
(to close the splash screen) methods:
OnCreateMainForm. Provides a way for a designer to emit code that initializes the main form.
By default, this method does nothing. However, when you select a main form for your application in the Visual Basic Project Designer, the designer overrides the OnCreateMainForm method with a method that sets the MainForm property to a new instance of the main form.
HideSplashScreen. If the application has a splash screen defined and it is open, this method closes the splash screen.
By default, this method closes the splash screen.