LoadItemsEventHandler Delegate
Represents the method that will handle the ItemDataBind event of a SelectionList control. For information about how to develop ASP.NET mobile applications, see the www.asp.net/mobile Web site.
Assembly: System.Web.Mobile (in System.Web.Mobile.dll)
[ObsoleteAttribute("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 )
Parameters
- sender
-
Type:
System::Object^
The source of the event, a SelectionList control.
- e
-
Type:
System.Web.UI.MobileControls::LoadItemsEventArgs^
A ListDataBindEventArgs object that contains the event data.
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.
Available since 1.1
SelectionList
System.Web.UI.MobileControls Namespace
Introduction to the SelectionList Control
ASP.NET Data Access Content Map