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

ColorBuilder.cs « System.Web.UI.Design « System.Design « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 11dabc54b2236c83eabae88e87ce951860044474 (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
//
// System.Web.UI.Design.ColorBuilder
//
// Authors:
//      Gert Driesen (drieseng@users.sourceforge.net)
//
// (C) 2004 Novell
//

using System.ComponentModel;

namespace System.Web.UI.Design
{
	public sealed class ColorBuilder
	{
		private ColorBuilder ()
		{
		}

		[MonoTODO]
		public static string BuildColor (IComponent component, System.Windows.Forms.Control owner, string initialColor)
		{
			throw new NotImplementedException ();
		}
	}
}