DataListDesigner.cs 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. //
  2. // System.Web.UI.Design.WebControls.DataListDesigner.cs
  3. //
  4. // Author: Duncan Mak ([email protected])
  5. //
  6. // Copyright (C) 2005 Novell, Inc (http://www.novell.com)
  7. //
  8. // Permission is hereby granted, free of charge, to any person obtaining
  9. // a copy of this software and associated documentation files (the
  10. // "Software"), to deal in the Software without restriction, including
  11. // without limitation the rights to use, copy, modify, merge, publish,
  12. // distribute, sublicense, and/or sell copies of the Software, and to
  13. // permit persons to whom the Software is furnished to do so, subject to
  14. // the following conditions:
  15. //
  16. // The above copyright notice and this permission notice shall be
  17. // included in all copies or substantial portions of the Software.
  18. //
  19. // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  20. // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  21. // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  22. // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
  23. // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
  24. // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
  25. // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  26. //
  27. using System.ComponentModel;
  28. using System.Windows.Forms.Design;
  29. namespace System.Web.UI.Design.WebControls {
  30. public abstract class DataListDesigner : BaseDataListDesigner
  31. {
  32. public DataGridDesigner ()
  33. : base ()
  34. {
  35. }
  36. public override bool AllowResize {
  37. get { throw new NotImplementedException (); }
  38. }
  39. protected bool TemplatesExist {
  40. get { throw new NotImplementedException (); }
  41. }
  42. protected override ITemplateEditingFrame CreateTemplateEditingFrame (
  43. TemplateEditingVerb verb)
  44. {
  45. throw new NotImplementedException ();
  46. }
  47. protected override void Dispose (bool disposing)
  48. {
  49. throw new NotImplementedException ();
  50. }
  51. protected override TemplateEditingVerb GetCachedTemplatedEditingVerbs ()
  52. {
  53. throw new NotImplementedException ();
  54. }
  55. public override string GetDesignTimeHtml ()
  56. {
  57. throw new NotImplementedException ();
  58. }
  59. public override string GetEmptyDesignTimeHtml ()
  60. {
  61. throw new NotImplementedException ();
  62. }
  63. public override string GetErrorDesignTimeHtml (Exception e)
  64. {
  65. throw new NotImplementedException ();
  66. }
  67. public override string GetTemplateContainerDataItemProperty (string template_name)
  68. {
  69. throw new NotImplementedException ();
  70. }
  71. public override string GetTemplateContent (
  72. ITemplateEditingFrame editing_frame,
  73. string template_name,
  74. out bool allow_editing)
  75. {
  76. throw new NotImplementedException ();
  77. }
  78. public override Type GetTemplatePropertyParentType (string template_name)
  79. {
  80. throw new NotImplementedException ();
  81. }
  82. public override void Initialize (IComponent component)
  83. {
  84. throw new NotImplementedException ();
  85. }
  86. protected void OnColumnsChanged ()
  87. {
  88. throw new NotImplementedException ();
  89. }
  90. protected abstract void OnTemplateEditingVerbsChanged ()
  91. {
  92. throw new NotImplementedException ();
  93. }
  94. public override void SetTemplateContent (
  95. ITemplateEditingFrame editing_frame,
  96. string template_name,
  97. string template_content)
  98. {
  99. throw new NotImplementedException ();
  100. }
  101. }
  102. }