LoadItemsEventArgs.cs 587 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. /**
  2. * Project : Mono
  3. * Namespace : System.Web.UI.MobileControls
  4. * Class : LoadItemsEventArgs
  5. * Author : Gaurav Vaish
  6. *
  7. * Copyright : 2003 with Gaurav Vaish, and with
  8. * Ximian Inc
  9. */
  10. namespace System.Web.UI.MobileControls
  11. {
  12. public class LoadItemsEventArgs : EventArgs
  13. {
  14. private int index;
  15. private int count;
  16. public LoadItemsEventArgs(int index, int count)
  17. {
  18. this.index = index;
  19. this.count = count;
  20. }
  21. public int ItemCount
  22. {
  23. get
  24. {
  25. return count;
  26. }
  27. }
  28. public int ItemIndex
  29. {
  30. get
  31. {
  32. return index;
  33. }
  34. }
  35. }
  36. }