BordersPageInternal.cs 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. /**
  2. * Namespace: System.Web.UI.Design.WebControls
  3. * Class: BordersPageInternal
  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 BordersPageInternal : BaseDataListPageInternal
  19. {
  20. public BordersPageInternal()
  21. {
  22. }
  23. [MonoTODO]
  24. protected override void LoadComponent()
  25. {
  26. InitializePage();
  27. BaseDataList baseCtrl = GetBaseControl();
  28. int cellPadding = baseCtrl.CellPadding;
  29. if(cellPadding >= 0)
  30. {
  31. throw new NotImplementedException();
  32. }
  33. int cellSpacing = baseCtrl.CellSpacing;
  34. if(cellSpacing >= 0)
  35. {
  36. throw new NotImplementedException();
  37. }
  38. throw new NotImplementedException();
  39. }
  40. [MonoTODO]
  41. private void InitializePage()
  42. {
  43. throw new NotImplementedException();
  44. }
  45. [MonoTODO]
  46. protected override void SaveComponent()
  47. {
  48. throw new NotImplementedException();
  49. }
  50. private void OnBordersChanged(object source, EventArgs e)
  51. {
  52. if(!IsLoading())
  53. {
  54. SetDirty();
  55. }
  56. }
  57. private void OnClickColorPicker(object source, EventArgs e)
  58. {
  59. throw new NotImplementedException();
  60. }
  61. public override void SetComponent(IComponent component)
  62. {
  63. base.SetComponent(component);
  64. InitializeForm();
  65. }
  66. [MonoTODO]
  67. private void InitializeForm()
  68. {
  69. throw new NotImplementedException();
  70. }
  71. [MonoTODO]
  72. protected override string HelpKeyword
  73. {
  74. get
  75. {
  76. throw new NotImplementedException();
  77. }
  78. }
  79. }
  80. }