2
0

MobileControl.cs 833 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. /**
  2. * Project : Mono
  3. * Namespace : System.Web.UI.MobileControls
  4. * Class : MobileControl
  5. * Author : Gaurav Vaish
  6. *
  7. * Copyright : 2002 with Gaurav Vaish, and with
  8. * Ximian Inc
  9. */
  10. using System.Drawing;
  11. using System.Web.UI;
  12. using System.Web.Mobile;
  13. namespace System.Web.UI.MobileControls
  14. {
  15. public abstract class MobileControl : Control
  16. {
  17. protected MobileControl()
  18. {
  19. }
  20. [MonoTODO]
  21. public IControlAdapter Adapter
  22. {
  23. get
  24. {
  25. throw new NotImplementedException();
  26. }
  27. }
  28. public Alignment Alignment
  29. {
  30. get
  31. {
  32. throw new NotImplementedException();
  33. }
  34. set
  35. {
  36. throw new NotImplementedException();
  37. }
  38. }
  39. public virtual Color BackColor
  40. {
  41. get
  42. {
  43. throw new NotImplementedException();
  44. }
  45. set
  46. {
  47. throw new NotImplementedException();
  48. }
  49. }
  50. }
  51. }