|
|
@@ -8,15 +8,102 @@
|
|
|
//
|
|
|
using System;
|
|
|
|
|
|
-namespace System.Drawing2D
|
|
|
+namespace System.Drawing.Drawing2D
|
|
|
{
|
|
|
/// <summary>
|
|
|
/// Summary description for LinearGradientBrush.
|
|
|
/// </summary>
|
|
|
- public class LinearGradientBrush
|
|
|
+ public sealed class LinearGradientBrush : Brush
|
|
|
{
|
|
|
- public LinearGradientBrush()
|
|
|
- {
|
|
|
+ //Constructors.
|
|
|
+ public LinearGradientBrush(Point point1, Point point2, Color color1, Color color2) {
|
|
|
}
|
|
|
+
|
|
|
+ public LinearGradientBrush(PointF point1, PointF point2, Color color1, Color color2) {
|
|
|
+ }
|
|
|
+
|
|
|
+ public LinearGradientBrush(Rectangle rect, Color color1, Color color2, LinearGradientMode linearGradientMode) {
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ //public Properties
|
|
|
+ public Blend Blend {
|
|
|
+ get {
|
|
|
+ throw new NotImplementedException ();
|
|
|
+ }
|
|
|
+ set {
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ public bool GammaCorrection {
|
|
|
+ get {
|
|
|
+ throw new NotImplementedException ();
|
|
|
+ }
|
|
|
+ set {
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ public ColorBlend InterpolationColors {
|
|
|
+ get {
|
|
|
+ throw new NotImplementedException ();
|
|
|
+ }
|
|
|
+ set {
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ public Color [] LinearColors {
|
|
|
+ get {
|
|
|
+ throw new NotImplementedException ();
|
|
|
+ }
|
|
|
+ set {
|
|
|
+ }
|
|
|
+ }
|
|
|
+ public RectangleF Rectange {
|
|
|
+ get {
|
|
|
+ throw new NotImplementedException ();
|
|
|
+ }
|
|
|
+ }
|
|
|
+ public Matrix Transform {
|
|
|
+ get {
|
|
|
+ throw new NotImplementedException ();
|
|
|
+ }
|
|
|
+ set {
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ public WrapMode WrapMode {
|
|
|
+ get {
|
|
|
+ throw new NotImplementedException ();
|
|
|
+ }
|
|
|
+ set {
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ // Public Methods
|
|
|
+
|
|
|
+ public override object Clone(){
|
|
|
+ throw new NotImplementedException ();
|
|
|
+ }
|
|
|
+
|
|
|
+ public void MultiplyTransform(Matrix matrix){
|
|
|
+ throw new NotImplementedException ();
|
|
|
+ }
|
|
|
+
|
|
|
+ public void MultiplyTransform(Matrix matrix, MatrixOrder order){
|
|
|
+ throw new NotImplementedException ();
|
|
|
+ }
|
|
|
+
|
|
|
+ public void ResetTransform(){
|
|
|
+ throw new NotImplementedException ();
|
|
|
+ }
|
|
|
+
|
|
|
+ public void RotateTransform(float angle, MatrixOrder order){
|
|
|
+ throw new NotImplementedException ();
|
|
|
+ }
|
|
|
+
|
|
|
+ public void RotateTransform(float angle){
|
|
|
+ throw new NotImplementedException ();
|
|
|
+ }
|
|
|
+
|
|
|
}
|
|
|
}
|