using EnhancedUI.EnhancedScroller; /// /// This is the view of our cell which handles how the cell looks. /// public class EScrCell : EnhancedScrollerCellView { protected int iType = -1; protected int itemID = -1; public void SetType(int itype) { iType = itype; } public virtual void SetData(int itemid) { } }