HtmlControlDesigner.cs 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. using System;
  2. using System.Collections;
  3. using System.ComponentModel.Design;
  4. using System.Web.UI;
  5. using System.Web.UI.WebControls;
  6. namespace System.Web.UI.Design
  7. {
  8. [MonoTODO]
  9. public class HtmlControlDesigner : ComponentDesigner
  10. {
  11. [MonoTODO]
  12. public HtmlControlDesigner () { throw new NotImplementedException (); }
  13. [MonoTODO]
  14. protected override void Dispose (bool disposing) { throw new NotImplementedException (); }
  15. [MonoTODO]
  16. protected virtual void OnBehaviorAttached () { throw new NotImplementedException (); }
  17. [MonoTODO]
  18. protected virtual void OnBehaviorDetaching () { throw new NotImplementedException (); }
  19. [MonoTODO]
  20. protected virtual void OnBindingsCollectionChanged (string propName) { throw new NotImplementedException (); }
  21. [MonoTODO]
  22. public virtual void OnSetParent () { throw new NotImplementedException (); }
  23. [MonoTODO]
  24. protected override void PreFilterEvents (IDictionary events) { throw new NotImplementedException (); }
  25. [MonoTODO]
  26. protected override void PreFilterProperties (IDictionary properties) { throw new NotImplementedException (); }
  27. [MonoTODO]
  28. public IHtmlControlDesignerBehavior Behavior { get { throw new NotImplementedException (); } set { throw new NotImplementedException (); } }
  29. [MonoTODO]
  30. public DataBindingCollection DataBindings { get { throw new NotImplementedException (); } }
  31. [MonoTODO]
  32. protected object DesignTimeElement { get { throw new NotImplementedException (); } }
  33. [MonoTODO]
  34. public virtual bool ShouldCodeSerialize { get { throw new NotImplementedException (); } set { throw new NotImplementedException (); } }
  35. }
  36. }