WindowsFormsApplicationBase.OnStartup(StartupEventArgs) Méthode
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.
Lors de la substitution dans une classe dérivée, autorise le code à s'exécuter lorsque l'application démarre.
protected:
virtual bool OnStartup(Microsoft::VisualBasic::ApplicationServices::StartupEventArgs ^ eventArgs);
protected virtual bool OnStartup (Microsoft.VisualBasic.ApplicationServices.StartupEventArgs eventArgs);
abstract member OnStartup : Microsoft.VisualBasic.ApplicationServices.StartupEventArgs -> bool
override this.OnStartup : Microsoft.VisualBasic.ApplicationServices.StartupEventArgs -> bool
Protected Overridable Function OnStartup (eventArgs As StartupEventArgs) As Boolean
Paramètres
- eventArgs
- StartupEventArgs
Arguments de ligne de commande de l’application et indique si le démarrage de l’application doit être annulé.
Retours
Boolean qui indique si l'application doit poursuivre son démarrage.
Remarques
Par défaut, cette méthode déclenche l’événement Startup. Le gestionnaire d’événements peut définir la Cancel propriété de l’argument d’événement. Si Cancel a la valeur True
, cette méthode retourne False
pour annuler le démarrage de l’application. Sinon, la méthode retourne True
.