| 1234567891011121314151617181920212223242526 |
- //
- // System.Web.UI.Design.ColorBuilder
- //
- // Authors:
- // Gert Driesen ([email protected])
- //
- // (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 ();
- }
- }
- }
|