Welcome to mirror list, hosted at ThFree Co, Russian Federation.

XmlDesigner.cs « System.Web.UI.Design.WebControls « System.Design « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c822edc786c08c21385c4c329d30c0749cf868f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/**
 * Namespace:   System.Web.UI.Design.WebControls
 * Class:       XmlDesigner
 *
 * Author:      Gaurav Vaish
 * Maintainer:  gvaish_mono@lycos.com
 *
 * (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);
		}
	}
}