Control.OnLoad(EventArgs) 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.
Déclenche l’événement Load.
protected:
virtual void OnLoad(EventArgs ^ e);
protected public:
virtual void OnLoad(EventArgs ^ e);
protected virtual void OnLoad (EventArgs e);
protected internal virtual void OnLoad (EventArgs e);
abstract member OnLoad : EventArgs -> unit
override this.OnLoad : EventArgs -> unit
Protected Overridable Sub OnLoad (e As EventArgs)
Protected Friend Overridable Sub OnLoad (e As EventArgs)
Paramètres
Exemples
// Override the OnLoad method to set _text to
// a default value if it is null.
protected override void OnLoad(EventArgs e)
{
base.OnLoad(e);
if (_text == null)
_text = "Here is some default text.";
}
Protected Overrides Sub OnLoad(ByVal e As EventArgs)
MyBase.OnLoad(e)
If _text Is Nothing Then
_text = "Here is some default text."
End If
End Sub
Remarques
ASP.NET appelle cette méthode pour déclencher l’événement Load . Si vous développez un contrôle personnalisé, vous pouvez remplacer cette méthode afin de fournir un traitement supplémentaire. Si vous remplacez cette méthode, appelez la méthode du contrôle de OnLoad base pour avertir les abonnés de l’événement.