ASP.NET.in.a.Nutshell.Second.Edition [Electronic resources] نسخه متنی

اینجــــا یک کتابخانه دیجیتالی است

با بیش از 100000 منبع الکترونیکی رایگان به زبان فارسی ، عربی و انگلیسی

ASP.NET.in.a.Nutshell.Second.Edition [Electronic resources] - نسخه متنی

G. andrew Duthie; matthew Macdonald

| نمايش فراداده ، افزودن یک نقد و بررسی
افزودن به کتابخانه شخصی
ارسال به دوستان
جستجو در متن کتاب
بیشتر
تنظیمات قلم

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

روز نیمروز شب
جستجو در لغت نامه
بیشتر
لیست موضوعات
توضیحات
افزودن یادداشت جدید







LoadItemsEventArgs.NET 1.1

System.Web.UI.MobileControls (system.web.mobile.dll)class

This custom EventArgs class provides additional
information to methods that handle the
PagedControl.LoadItems event (whcih fires when a
custom-paginated control requires data). This information includes
the ItemIndex (which indicates the first required
item), and the ItemCount (which indicates the
number of required items). Your code must then prepare this subset of
the data, submit it to the control by setting the
DataSource property, and call the
MobileControl.DataBind( ) to bind the data.

public class 

LoadItemsEventArgs : EventArgs {
// Public Constructors
public

LoadItemsEventArgs (int

index , int

count );
// Public Instance Properties
public int

ItemCount {get; }
public int

ItemIndex {get; }
}



Hierarchy


System.Object
System.EventArgs
LoadItemsEventArgs

Passed To


LoadItemsEventHandler.{BeginInvoke( ),
Invoke( )},

PagedControl.OnLoadItems()

/ 873