Menu.OnMenuItemDataBound(MenuEventArgs) 方法

定义

引发 MenuItemDataBound 事件。Raises the MenuItemDataBound event.

protected:
 virtual void OnMenuItemDataBound(System::Web::UI::WebControls::MenuEventArgs ^ e);
protected virtual void OnMenuItemDataBound (System.Web.UI.WebControls.MenuEventArgs e);
abstract member OnMenuItemDataBound : System.Web.UI.WebControls.MenuEventArgs -> unit
override this.OnMenuItemDataBound : System.Web.UI.WebControls.MenuEventArgs -> unit
Protected Overridable Sub OnMenuItemDataBound (e As MenuEventArgs)

参数

e
MenuEventArgs

包含事件数据的 MenuEventArgsA MenuEventArgs that contains the event data.

注解

OnMenuItemDataBound 方法由 Menu 控件调用以引发 MenuItemDataBound 事件。The OnMenuItemDataBound method is called by the Menu control to raise the MenuItemDataBound event. 在扩展类时,控件开发人员通常会使用此方法 MenuIt is generally used by control developers when extending the Menu class.

引发事件时,将通过委托调用事件处理程序。Raising an event invokes the event handler through a delegate. 有关详细信息,请参阅处理和引发事件For more information, see Handling and Raising Events.

OnMenuItemDataBound 方法还允许派生类对事件进行处理而不必附加委托。The OnMenuItemDataBound method also allows derived classes to handle the event without attaching a delegate. 这是在派生类中处理事件的首选技术。This is the preferred technique for handling the event in a derived class.

继承者说明

在派生类中重写 OnMenuItemDataBound(MenuEventArgs) 时,一定要调用基类的 OnMenuItemDataBound(MenuEventArgs) 方法,以便已注册的委托对事件进行接收。When overriding OnMenuItemDataBound(MenuEventArgs) in a derived class, be sure to call the base class's OnMenuItemDataBound(MenuEventArgs) method so that registered delegates receive the event.

适用于

另请参阅