| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- /**
- * Namespace: System.Web.UI.Design.WebControls
- * Class: XmlDesigner
- *
- * Author: Gaurav Vaish
- * Maintainer: [email protected]
- *
- * (C) Gaurav Vaish (2002)
- */
- using System;
- using System.ComponentModel;
- using System.Web.UI.WebControls;
- using System.Web.UI.Design;
- namespace System.Web.UI.Design.WebControls
- {
- public class XmlDesigner : ControlDesigner
- {
- private System.Web.UI.WebControls.Xml xml;
- public XmlDesigner()
- {
- }
- public override void Initialize(IComponent component)
- {
- if(component is System.Web.UI.WebControls.Xml)
- {
- xml = (System.Web.UI.WebControls.Xml)component;
- }
- base.Initialize(component);
- }
- public override string GetDesignTimeHtml()
- {
- return GetEmptyDesignTimeHtml();
- }
- [MonoTODO]
- protected override string GetEmptyDesignTimeHtml()
- {
- throw new NotImplementedException();
- }
- protected override void Dispose(bool disposing)
- {
- if(disposing)
- xml = null;
- base.Dispose(disposing);
- }
- }
- }
|