ItemPager.cs 813 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /**
  2. * Project : Mono
  3. * Namespace : System.Web.UI.MobileControls
  4. * Class : ItemPager
  5. * Author : Gaurav Vaish
  6. *
  7. * Copyright : 2003 with Gaurav Vaish, and with
  8. * Ximian Inc
  9. */
  10. using System.Web.Mobile;
  11. namespace System.Web.UI.MobileControls
  12. {
  13. public class ItemPager
  14. {
  15. private MobileControl control;
  16. private int firstPage;
  17. private int lastPage;
  18. private int firstPageItemCount;
  19. private int fullPageItemCount;
  20. private int lastPageItemCount;
  21. public ItemPager()
  22. {
  23. }
  24. public ItemPager(ControlPager pager, MobileControl control,
  25. int itemCount, int itemsPerPage, int itemWeight)
  26. {
  27. this.control = control;
  28. if(itemsPerPage > 0)
  29. {
  30. throw new NotImplementedException();
  31. } else
  32. {
  33. throw new NotImplementedException();
  34. }
  35. }
  36. }
  37. }