LoadItemsEventHandler Delegate
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Caution
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.
Represents the method that will handle the ItemDataBind event of a SelectionList control. For information about how to develop ASP.NET mobile applications, see Mobile Apps & Sites with ASP.NET.
public delegate void LoadItemsEventHandler(System::Object ^ sender, LoadItemsEventArgs ^ e);
public delegate void LoadItemsEventHandler(object sender, LoadItemsEventArgs 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 LoadItemsEventHandler(object sender, LoadItemsEventArgs e);
type LoadItemsEventHandler = delegate of obj * LoadItemsEventArgs -> 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 LoadItemsEventHandler = delegate of obj * LoadItemsEventArgs -> unit
Public Delegate Sub LoadItemsEventHandler(sender As Object, e As LoadItemsEventArgs)
Parameters
- sender
- Object
The source of the event, a SelectionList control.
A ListDataBindEventArgs object that contains the event data.
- Attributes
Remarks
A list control contains a collection of items. These items are of the MobileListItem class. When providing default rendering, the list control represents a MobileListItem by its Text property. In templated rendering, the template can render any desired property of a MobileListItem or associated data-bound object. If an item is data-bound to a MobileListItem object, the ItemDataBind event is raised. At this time, the handler can set properties of the MobileListItem object from arbitrary expressions.
When you create a ListDataBindEventHandler delegate for a SelectionList control, you identify the method that will handle the event. The SelectionList control notifies the handler when an item event is generated. To associate the event with your event handler, add an instance of the delegate to the event. Unless you remove the delegate, the event handler is called whenever the event occurs.
Extension Methods
GetMethodInfo(Delegate) |
Gets an object that represents the method represented by the specified delegate. |