StartupEventHandler Delegate
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.
Represents the method that will handle the My.Application.Startup
event.
public delegate void StartupEventHandler(System::Object ^ sender, StartupEventArgs ^ e);
public delegate void StartupEventHandler(object sender, StartupEventArgs e);
type StartupEventHandler = delegate of obj * StartupEventArgs -> unit
Public Delegate Sub StartupEventHandler(sender As Object, e As StartupEventArgs)
Parameters
- sender
- Object
The source of the event.
A StartupEventArgs object that contains the event data.
Examples
WindowsFormsApplicationBase.Startup
Overview of the Visual Basic Application Model
Remarks
In Visual Basic, you do not need to work with this delegate explicitly. For more information, see Startup.
Extension Methods
GetMethodInfo(Delegate) |
Gets an object that represents the method represented by the specified delegate. |