ControlDesigner.cs 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. using System;
  2. using System.ComponentModel.Design;
  3. using System.ComponentModel;
  4. using System.Web.UI.WebControls;
  5. using System.Collections;
  6. namespace System.Web.UI.Design
  7. {
  8. [MonoTODO]
  9. public class ControlDesigner : HtmlControlDesigner
  10. {
  11. [MonoTODO]
  12. public ControlDesigner () { throw new NotImplementedException (); }
  13. [MonoTODO]
  14. protected string CreatePlaceHolderDesignTimeHtml () { throw new NotImplementedException (); }
  15. [MonoTODO]
  16. protected string CreatePlaceHolderDesignTimeHtml (string instruction) { throw new NotImplementedException (); }
  17. [MonoTODO]
  18. public virtual string GetDesignTimeHtml () { throw new NotImplementedException (); }
  19. [MonoTODO]
  20. protected virtual string GetEmptyDesignTimeHtml () { throw new NotImplementedException (); }
  21. [MonoTODO]
  22. protected virtual string GetErrorDesignTimeHtml (Exception e) { throw new NotImplementedException (); }
  23. [MonoTODO]
  24. public virtual string GetPersistInnerHtml () { throw new NotImplementedException (); }
  25. [MonoTODO]
  26. public override void Initialize (IComponent component) { throw new NotImplementedException (); }
  27. [MonoTODO]
  28. public bool IsPropertyBound (string propName) { throw new NotImplementedException (); }
  29. [MonoTODO]
  30. protected override void OnBehaviorAttached () { throw new NotImplementedException (); }
  31. [MonoTODO]
  32. protected override void OnBindingsCollectionChanged (string propName) { throw new NotImplementedException (); }
  33. [MonoTODO]
  34. public virtual void OnComponentChanged (object sender, ComponentChangedEventArgs ce) { throw new NotImplementedException (); }
  35. [MonoTODO]
  36. protected virtual void OnControlResize () { throw new NotImplementedException (); }
  37. [MonoTODO]
  38. protected override void PreFilterProperties (IDictionary properties) { throw new NotImplementedException (); }
  39. [MonoTODO]
  40. public void RaiseResizeEvent () { throw new NotImplementedException (); }
  41. [MonoTODO]
  42. public virtual void UpdateDesignTimeHtml () { throw new NotImplementedException (); }
  43. [MonoTODO]
  44. public virtual bool AllowResize { get { throw new NotImplementedException (); } }
  45. [MonoTODO]
  46. protected object DesignTimeElementView { get { throw new NotImplementedException (); } }
  47. [MonoTODO]
  48. public virtual bool DesignTimeHtmlRequiresLoadComplete { get { throw new NotImplementedException (); } }
  49. [MonoTODO]
  50. public virtual string ID { get { throw new NotImplementedException (); } set { throw new NotImplementedException (); } }
  51. [MonoTODO]
  52. public bool IsDirty { get { throw new NotImplementedException (); } set { throw new NotImplementedException (); } }
  53. [MonoTODO]
  54. public bool ReadOnly { get { throw new NotImplementedException (); } set { throw new NotImplementedException (); } }
  55. }
  56. }