LinearGradientBrush.cs 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. //
  2. // System.Drawing.Drawing2D.LinearGradientBrush.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. {
  12. /// <summary>
  13. /// Summary description for LinearGradientBrush.
  14. /// </summary>
  15. public sealed class LinearGradientBrush : Brush
  16. {
  17. //Constructors.
  18. public LinearGradientBrush(Point point1, Point point2, Color color1, Color color2) {
  19. }
  20. public LinearGradientBrush(PointF point1, PointF point2, Color color1, Color color2) {
  21. }
  22. public LinearGradientBrush(Rectangle rect, Color color1, Color color2, LinearGradientMode linearGradientMode) {
  23. }
  24. //public Properties
  25. public Blend Blend {
  26. get {
  27. throw new NotImplementedException ();
  28. }
  29. set {
  30. }
  31. }
  32. public bool GammaCorrection {
  33. get {
  34. throw new NotImplementedException ();
  35. }
  36. set {
  37. }
  38. }
  39. public ColorBlend InterpolationColors {
  40. get {
  41. throw new NotImplementedException ();
  42. }
  43. set {
  44. }
  45. }
  46. public Color [] LinearColors {
  47. get {
  48. throw new NotImplementedException ();
  49. }
  50. set {
  51. }
  52. }
  53. public RectangleF Rectange {
  54. get {
  55. throw new NotImplementedException ();
  56. }
  57. }
  58. public Matrix Transform {
  59. get {
  60. throw new NotImplementedException ();
  61. }
  62. set {
  63. }
  64. }
  65. public WrapMode WrapMode {
  66. get {
  67. throw new NotImplementedException ();
  68. }
  69. set {
  70. }
  71. }
  72. // Public Methods
  73. public override object Clone(){
  74. throw new NotImplementedException ();
  75. }
  76. public void MultiplyTransform(Matrix matrix){
  77. throw new NotImplementedException ();
  78. }
  79. public void MultiplyTransform(Matrix matrix, MatrixOrder order){
  80. throw new NotImplementedException ();
  81. }
  82. public void ResetTransform(){
  83. throw new NotImplementedException ();
  84. }
  85. public void RotateTransform(float angle, MatrixOrder order){
  86. throw new NotImplementedException ();
  87. }
  88. public void RotateTransform(float angle){
  89. throw new NotImplementedException ();
  90. }
  91. }
  92. }