FormatPageInternal.cs 852 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. /**
  2. * Namespace: System.Web.UI.Design.WebControls
  3. * Class: FormatPageInternal
  4. *
  5. * Author: Gaurav Vaish
  6. * Maintainer: mastergaurav AT users DOT sf DOT net
  7. *
  8. * (C) Gaurav Vaish (2002)
  9. */
  10. using System;
  11. using System.ComponentModel;
  12. using System.ComponentModel.Design;
  13. using System.Web.UI.Design;
  14. using System.Windows.Forms.Design;
  15. using System.Web.UI.WebControls;
  16. namespace System.Web.UI.Design.WebControls
  17. {
  18. class FormatPageInternal : BaseDataListPageInternal
  19. {
  20. public FormatPageInternal() : base()
  21. {
  22. }
  23. [MonoTODO]
  24. protected override void LoadComponent()
  25. {
  26. throw new NotImplementedException();
  27. }
  28. [MonoTODO]
  29. protected override void SaveComponent()
  30. {
  31. throw new NotImplementedException();
  32. }
  33. protected override string HelpKeyword
  34. {
  35. get
  36. {
  37. throw new NotImplementedException();
  38. }
  39. }
  40. }
  41. }