| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- using System;
- using System.Collections;
- using System.ComponentModel.Design;
- using System.Web.UI;
- using System.Web.UI.WebControls;
- namespace System.Web.UI.Design
- {
- [MonoTODO]
- public class HtmlControlDesigner : ComponentDesigner
- {
- [MonoTODO]
- public HtmlControlDesigner () { throw new NotImplementedException (); }
- [MonoTODO]
- protected override void Dispose (bool disposing) { throw new NotImplementedException (); }
- [MonoTODO]
- protected virtual void OnBehaviorAttached () { throw new NotImplementedException (); }
- [MonoTODO]
- protected virtual void OnBehaviorDetaching () { throw new NotImplementedException (); }
- [MonoTODO]
- protected virtual void OnBindingsCollectionChanged (string propName) { throw new NotImplementedException (); }
- [MonoTODO]
- public virtual void OnSetParent () { throw new NotImplementedException (); }
- [MonoTODO]
- protected override void PreFilterEvents (IDictionary events) { throw new NotImplementedException (); }
- [MonoTODO]
- protected override void PreFilterProperties (IDictionary properties) { throw new NotImplementedException (); }
- [MonoTODO]
- public IHtmlControlDesignerBehavior Behavior { get { throw new NotImplementedException (); } set { throw new NotImplementedException (); } }
- [MonoTODO]
- public DataBindingCollection DataBindings { get { throw new NotImplementedException (); } }
- [MonoTODO]
- protected object DesignTimeElement { get { throw new NotImplementedException (); } }
- [MonoTODO]
- public virtual bool ShouldCodeSerialize { get { throw new NotImplementedException (); } set { throw new NotImplementedException (); } }
- }
- }
|