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

BordersPageInternal.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: 982bee197e4c172cada2b60d20ae1e7942385fdd (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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
/**
 * Namespace:   System.Web.UI.Design.WebControls
 * Class:       BordersPageInternal
 *
 * Author:      Gaurav Vaish
 * Maintainer:  mastergaurav AT users DOT sf DOT net
 *
 * (C) Gaurav Vaish (2002)
 */

using System;
using System.ComponentModel;
using System.ComponentModel.Design;
using System.Web.UI.Design;
using System.Windows.Forms.Design;
using System.Web.UI.WebControls;

namespace System.Web.UI.Design.WebControls
{
	class BordersPageInternal : BaseDataListPageInternal
	{
		public BordersPageInternal()
		{
		}

		[MonoTODO]
		protected override void LoadComponent()
		{
			InitializePage();
			BaseDataList baseCtrl = GetBaseControl();
			int cellPadding = baseCtrl.CellPadding;
			if(cellPadding >= 0)
			{
				throw new NotImplementedException();
			}
			int cellSpacing = baseCtrl.CellSpacing;
			if(cellSpacing >= 0)
			{
				throw new NotImplementedException();
			}
			throw new NotImplementedException();
		}

		[MonoTODO]
		private void InitializePage()
		{
			throw new NotImplementedException();
		}

		[MonoTODO]
		protected override void SaveComponent()
		{
			throw new NotImplementedException();
		}

		private void OnBordersChanged(object source, EventArgs e)
		{
			if(!IsLoading())
			{
				SetDirty();
			}
		}

		private void OnClickColorPicker(object source, EventArgs e)
		{
			throw new NotImplementedException();
		}

		public override void SetComponent(IComponent component)
		{
			base.SetComponent(component);
			InitializeForm();
		}

		[MonoTODO]
		private void InitializeForm()
		{
			throw new NotImplementedException();
		}

		[MonoTODO]
		protected override string HelpKeyword
		{
			get
			{
				throw new NotImplementedException();
			}
		}
	}
}