Control.OnLoad(EventArgs) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
引發 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)
參數
範例
// 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 方法來通知事件的訂閱者。