ColorBuilder.cs 451 B

1234567891011121314151617181920212223242526
  1. //
  2. // System.Web.UI.Design.ColorBuilder
  3. //
  4. // Authors:
  5. // Gert Driesen ([email protected])
  6. //
  7. // (C) 2004 Novell
  8. //
  9. using System.ComponentModel;
  10. namespace System.Web.UI.Design
  11. {
  12. public sealed class ColorBuilder
  13. {
  14. private ColorBuilder ()
  15. {
  16. }
  17. [MonoTODO]
  18. public static string BuildColor (IComponent component, System.Windows.Forms.Control owner, string initialColor)
  19. {
  20. throw new NotImplementedException ();
  21. }
  22. }
  23. }