StartupEventHandler Délégué
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Représente la méthode qui gérera l'événement My.Application.Startup
.
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)
Paramètres
- sender
- Object
Source de l'événement.
Objet StartupEventArgs qui contient les données d'événement.
Exemples
WindowsFormsApplicationBase.Startup
Vue d'ensemble du modèle d'application Visual Basic
Remarques
En Visual Basic, vous n’avez pas besoin d’utiliser ce délégué explicitement. Pour plus d'informations, consultez Startup.
Méthodes d’extension
GetMethodInfo(Delegate) |
Obtient un objet qui représente la méthode représentée par le délégué spécifié. |