Control.OnInit(EventArgs) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
引发 Init 事件。
protected:
virtual void OnInit(EventArgs ^ e);
protected public:
virtual void OnInit(EventArgs ^ e);
protected virtual void OnInit (EventArgs e);
protected internal virtual void OnInit (EventArgs e);
abstract member OnInit : EventArgs -> unit
override this.OnInit : EventArgs -> unit
Protected Overridable Sub OnInit (e As EventArgs)
Protected Friend Overridable Sub OnInit (e As EventArgs)
参数
示例
// Override the OnInit method to set _text to
// a default value if it is null.
[System.Security.Permissions.PermissionSet
(System.Security.Permissions.SecurityAction.Demand,
Name="FullTrust")]
protected override void OnInit(EventArgs e)
{
base.OnInit(e);
if ( _text == null)
_text = "Here is some default text.";
}
' Override the OnInit method to set _text to
' a default value if it is null.
<System.Security.Permissions.PermissionSetAttribute( _
System.Security.Permissions.SecurityAction.Demand, _
Name:="FullTrust")> _
Protected Overrides Sub OnInit(ByVal e As EventArgs)
MyBase.OnInit(e)
If _text Is Nothing Then
_text = "Here is some default text."
End If
End Sub
注解
ASP.NET 调用此方法来引发 Init 事件。 如果要开发自定义控件,则可以替代此方法以提供其他处理。 如果重写此方法,请调用基控件的 OnInit 方法来通知事件的订阅者。