Control.OnLoad(EventArgs) メソッド

定義

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)

パラメーター

e
EventArgs

イベント データを保持する EventArgs オブジェクトです。

// 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

注釈

ASP.NET は、このメソッドを呼び出して イベントを Load 発生させます。 カスタム コントロールを開発している場合は、追加の処理を提供するためにこのメソッドをオーバーライドできます。 このメソッドをオーバーライドする場合は、基本コントロールの OnLoad メソッドを呼び出して、サブスクライバーにイベントを通知します。

適用対象

こちらもご覧ください