My Project
ShapeCurve.cs
查看本檔案說明文件.
1 using System;
2 using System.Collections;
3 using System.Collections.Generic;
4 using System.Linq;
5 using System.Text;
6 using System.Threading.Tasks;
7 using System.Windows;
8 using System.Windows.Media;
9 using System.Windows.Shapes;
10 
11 namespace ShapeLib.VShape
12 {
14  {
15 
16 
17  public override System.Collections.ArrayList getMenuItem()
18  {
19 
20  ArrayList ret = new ArrayList();
21 
22  shapeUI ui = new shapeUI();
23  ui.label = "Curve";
24 
25  System.Reflection.Assembly myAssembly = System.Reflection.Assembly.GetExecutingAssembly();
26  System.IO.Stream myStream = myAssembly.GetManifestResourceStream("ShapeLib.icons.curve.png");
27  ui.image = new System.Drawing.Bitmap(myStream);
28 
29  ui.belong = "Shapes";
30  ui.click = this.btn_Click;
31  ret.Add(ui);
32 
33  return ret;
34  //throw new NotImplementedException();
35  }
36 
37 
38 
39 
40  public override void DrawShape(gView gv, gPath data, Boolean bfirst)
41  {
42 
43 
44  if (bfirst)
45  {
46  shapeLib.Data.Status = "rest";
47  shapeLib.Data.bfirst = false;
48  BezierSegment bezier = new BezierSegment();
49  bezier.Point3 = data.controlBtn3;
50  PathFigure figure = new PathFigure();
51  figure.StartPoint = data.controlBtn1;
52  bezier.Point1 = figure.StartPoint;
53  bezier.Point2 = bezier.Point3;
54  figure.Segments.Add(bezier);
55  PathGeometry geometry = new PathGeometry();
56  geometry.Figures.Add(figure);
57  Path myPath = new System.Windows.Shapes.Path();
58  SolidColorBrush mySolidColorBrush = new SolidColorBrush();
59  // Describes the brush's color using RGB values.
60  // Each value has a range of 0-255.
61 
62  myPath.Stroke = new SolidColorBrush(Color.FromRgb(data.state.colorR, data.state.colorG, data.state.colorB));
63  myPath.StrokeThickness = data.state.strokeT;
64  /*myPath.MouseLeftButtonDown += data.myLine_MouseLeftButtonDown;
65  myPath.MouseEnter += data.myLine_MouseEnter;
66  myPath.MouseLeave += data.myLine_MouseLeave; */
67  myPath.Data = geometry;
68  shapeLib.Data.mygrid.Children.Add(myPath);
69  gv.baseShape.Add(myPath);
70  }
71  else
72  {
73  Path myPath = (Path)gv.baseShape[0];// =(Line) currPath.getDrawShape();
74  PathGeometry geometry = (PathGeometry)myPath.Data;
75  geometry.Figures[0].StartPoint = data.controlBtn1;
76  BezierSegment bs = (BezierSegment)geometry.Figures[0].Segments[0];
77  bs.Point1 = data.controlBtn2;
78  bs.Point2 = data.controlBtn3;
79  bs.Point3 = data.controlBtn4;
80  }
81  }
82 
83  public override void DisplayControlPoints(gView gv, gPath data)
84  {
85  if (gv.controlShape.Count == 0)
86  {
87  BezierSegment bezier = new BezierSegment();
88  bezier.Point3 = data.controlBtn3;
89  PathFigure figure = new PathFigure();
90  figure.StartPoint = data.controlBtn1;
91  bezier.Point1 = figure.StartPoint;
92  bezier.Point2 = bezier.Point3;
93  figure.Segments.Add(bezier);
94  PathGeometry geometry = new PathGeometry();
95  geometry.Figures.Add(figure);
96  Path myPath = new System.Windows.Shapes.Path();
97  myPath.Stroke = new SolidColorBrush(System.Windows.Media.Color.FromRgb(255, 0, 255));
98  myPath.StrokeThickness = data.state.strokeT;
99  /* myPath.MouseLeftButtonDown += data.myLine_MouseLeftButtonDown;
100  myPath.MouseEnter += data.myLine_MouseEnter;
101  myPath.MouseLeave += data.myLine_MouseLeave; */
102  myPath.Data = geometry;
103  shapeLib.Data.mygrid.Children.Add(myPath);
104  gv.controlShape.Add(myPath);
105 
106  }
107 
108  else
109  {
110  Path myPath = (Path)gv.controlShape[0];// =(Line) currPath.getDrawShape();
111  PathGeometry geometry = (PathGeometry)myPath.Data;
112  geometry.Figures[0].StartPoint = data.controlBtn1;
113  BezierSegment bs = (BezierSegment)geometry.Figures[0].Segments[0];
114  bs.Point1 = data.controlBtn2;
115  bs.Point2 = data.controlBtn3;
116  bs.Point3 = data.controlBtn4;
117  }
118 
119  }
120  }
121 }
static GModel Data
Definition: shapeLib.cs:42
RibbonControlEventHandler click
Definition: ShapeObj.cs:49
string belong
判斷按下Button控制項
Definition: ShapeObj.cs:53
System.Windows.Point controlBtn3
Definition: GraphDoc.cs:255
override void DisplayControlPoints(gView gv, gPath data)
Definition: ShapeCurve.cs:83
System.Windows.Point controlBtn4
Definition: GraphDoc.cs:256
某一類的形狀.包含UI 的界面,繪製方式.更新方式.新增方式
Definition: ShapeObj.cs:59
System.Windows.Point controlBtn2
Definition: GraphDoc.cs:254
定義一個UI項目
Definition: ShapeObj.cs:42
List< Shape > baseShape
Definition: gView.cs:12
System.Windows.Point controlBtn1
Definition: GraphDoc.cs:253
void btn_Click(object sender, RibbonControlEventArgs e)
UI 點選
Definition: ShapeObj.cs:107
System.Drawing.Image image
Definition: ShapeObj.cs:46
override System.Collections.ArrayList getMenuItem()
覆寫System.Collections.ArrayList
Definition: ShapeCurve.cs:17
List< Shape > controlShape
Definition: gView.cs:13
override void DrawShape(gView gv, gPath data, Boolean bfirst)
依data 繪製,如果是第一次畫要新建shape, 更新的話只要更新最後一點
Definition: ShapeCurve.cs:40