ListDataBindEventHandler 委托

定义

注意

The System.Web.Mobile.dll assembly has been deprecated and should no longer be used. For information about how to develop ASP.NET mobile applications, see http://go.microsoft.com/fwlink/?LinkId=157231.

表示处理 ItemDataBind 控件的 List 事件的方法。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站

public delegate void ListDataBindEventHandler(System::Object ^ sender, ListDataBindEventArgs ^ e);
public delegate void ListDataBindEventHandler(object sender, ListDataBindEventArgs e);
[System.Obsolete("The System.Web.Mobile.dll assembly has been deprecated and should no longer be used. For information about how to develop ASP.NET mobile applications, see http://go.microsoft.com/fwlink/?LinkId=157231.")]
public delegate void ListDataBindEventHandler(object sender, ListDataBindEventArgs e);
type ListDataBindEventHandler = delegate of obj * ListDataBindEventArgs -> unit
[<System.Obsolete("The System.Web.Mobile.dll assembly has been deprecated and should no longer be used. For information about how to develop ASP.NET mobile applications, see http://go.microsoft.com/fwlink/?LinkId=157231.")>]
type ListDataBindEventHandler = delegate of obj * ListDataBindEventArgs -> unit
Public Delegate Sub ListDataBindEventHandler(sender As Object, e As ListDataBindEventArgs)

参数

sender
Object

事件的源,即 List

e
ListDataBindEventArgs

包含事件数据的 ListDataBindEventArgs

属性

注解

控件 List 包含项的集合。 这些项属于 MobileListItem 类。 提供默认呈现时, List 控件使用其 Text 属性表示MobileListItem对象。 在模板化呈现中,模板可以呈现对象或关联的数据绑定对象的任何所需属性 MobileListItem

List控件创建ListDataBindEventHandler委托时,需要标识处理事件的方法。 控件 List 在生成项事件时通知处理程序。 若要将事件与事件处理程序关联,请将该委托的一个实例添加到事件中。 除非移除了该委托,否则每当发生该事件时都会调用事件处理程序。

扩展方法

GetMethodInfo(Delegate)
已过时.

获取指示指定委托表示的方法的对象。

适用于

另请参阅