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 を使用した Mobile Apps & サイト」を参照してください。

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プロパティを使用して オブジェクトをMobileListItemText表します。 テンプレート レンダリングでは、テンプレートは、オブジェクトまたは関連するデータ バインド オブジェクトの任意の必要な MobileListItem プロパティをレンダリングできます。

コントロールのデリゲートListListDataBindEventHandler作成するときは、イベントを処理するメソッドを識別します。 コントロールは List 、項目イベントが生成されたときにハンドラーに通知します。 イベント ハンドラーにイベントを関連付けるには、イベントにデリゲートのインスタンスを追加します。 デリゲートを削除しない限り、イベントが発生すると必ずイベント ハンドラーが呼び出されます。

拡張メソッド

GetMethodInfo(Delegate)
古い.

指定したデリゲートによって表されるメソッドを表すオブジェクトを取得します。

適用対象

こちらもご覧ください