HatchBrush.cs 861 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. //
  2. // System.Drawing.Drawing2D.HatchBrush.cs
  3. //
  4. // Author:
  5. // Dennis Hayes ([email protected])
  6. //
  7. // (C) 2002/3 Ximian, Inc
  8. //
  9. using System;
  10. namespace System.Drawing.Drawing2D {
  11. /// <summary>
  12. /// Summary description for HatchBrush.
  13. /// </summary>
  14. public sealed class HatchBrush : Brush {
  15. public HatchBrush(HatchStyle hatchstyle, Color foreColor, Color backColor) {
  16. }
  17. public HatchBrush(HatchStyle hatchstyle, Color foreColor) {
  18. }
  19. public Color BackgroundColor {
  20. get {
  21. throw new NotImplementedException ();
  22. }
  23. }
  24. public Color ForegroundColor {
  25. get {
  26. throw new NotImplementedException ();
  27. }
  28. }
  29. public HatchStyle HatchStyle {
  30. get {
  31. throw new NotImplementedException ();
  32. }
  33. }
  34. public override object Clone(){
  35. throw new NotImplementedException ();
  36. }
  37. }
  38. }