Form.cs 880 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. /**
  2. * Project : Mono
  3. * Namespace : System.Web.UI.MobileControls
  4. * Class : Form
  5. * Author : Gaurav Vaish
  6. *
  7. * Copyright : 2003 with Gaurav Vaish, and with
  8. * Ximian Inc
  9. */
  10. using System.Web.UI;
  11. using System.Web.Mobile;
  12. namespace System.Web.UI.MobileControls
  13. {
  14. public class Form : Panel, IPostBackEventHandler
  15. {
  16. public Form()
  17. {
  18. }
  19. public string Action
  20. {
  21. get
  22. {
  23. throw new NotImplementedException();
  24. }
  25. set
  26. {
  27. throw new NotImplementedException();
  28. }
  29. }
  30. [MonoTODO]
  31. void IPostBackEventHandler.RaisePostBackEvent(string eventArgument)
  32. {
  33. throw new NotImplementedException();
  34. }
  35. public int CurrentPage
  36. {
  37. get
  38. {
  39. throw new NotImplementedException();
  40. }
  41. set
  42. {
  43. throw new NotImplementedException();
  44. }
  45. }
  46. public bool HasActiveHandler()
  47. {
  48. throw new NotImplementedException();
  49. }
  50. }
  51. }