ControlDesigner.cs 2.6 KB

12345678910111213141516171819202122232425262728293031323334
  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. [MonoTODO] public class ControlDesigner : HtmlControlDesigner
  8. {
  9. [MonoTODO] public ControlDesigner () { throw new NotImplementedException (); }
  10. [MonoTODO] protected string CreatePlaceHolderDesignTimeHtml () { throw new NotImplementedException (); }
  11. [MonoTODO] protected string CreatePlaceHolderDesignTimeHtml (string instruction) { throw new NotImplementedException (); }
  12. [MonoTODO] public virtual string GetDesignTimeHtml () { throw new NotImplementedException (); }
  13. [MonoTODO] protected virtual string GetEmptyDesignTimeHtml () { throw new NotImplementedException (); }
  14. [MonoTODO] protected virtual string GetErrorDesignTimeHtml (Exception e) { throw new NotImplementedException (); }
  15. [MonoTODO] public virtual string GetPersistInnerHtml () { throw new NotImplementedException (); }
  16. [MonoTODO] public override void Initialize (IComponent component) { throw new NotImplementedException (); }
  17. [MonoTODO] public bool IsPropertyBound (string propName) { throw new NotImplementedException (); }
  18. [MonoTODO] protected override void OnBehaviorAttached () { throw new NotImplementedException (); }
  19. [MonoTODO] protected override void OnBindingsCollectionChanged (string propName) { throw new NotImplementedException (); }
  20. [MonoTODO] public virtual void OnComponentChanged (object sender, ComponentChangedEventArgs ce) { throw new NotImplementedException (); }
  21. [MonoTODO] protected virtual void OnControlResize () { throw new NotImplementedException (); }
  22. // LAMESPEC: we should have protected
  23. [MonoTODO] public override void PreFilterProperties (IDictionary properties) { throw new NotImplementedException (); }
  24. [MonoTODO] public void RaiseResizeEvent () { throw new NotImplementedException (); }
  25. [MonoTODO] public virtual void UpdateDesignTimeHtml () { throw new NotImplementedException (); }
  26. [MonoTODO] public virtual bool AllowResize { get { throw new NotImplementedException (); } }
  27. [MonoTODO] protected object DesignTimeElementView { get { throw new NotImplementedException (); } }
  28. [MonoTODO] public virtual bool DesignTimeHtmlRequiresLoadComplete { get { throw new NotImplementedException (); } }
  29. [MonoTODO] public virtual string ID { get { throw new NotImplementedException (); } set { throw new NotImplementedException (); } }
  30. [MonoTODO] public bool IsDirty { get { throw new NotImplementedException (); } set { throw new NotImplementedException (); } }
  31. [MonoTODO] public bool ReadOnly { get { throw new NotImplementedException (); } set { throw new NotImplementedException (); } }
  32. }
  33. }