コード例 #1
0
ファイル: DAIShape.cs プロジェクト: pingli-study/Desktop-Maps
 public DAIShape(DAIShapeType shapeType)
     : this(shapeType, 1, new RGBColor())
 {
 }
コード例 #2
0
ファイル: DAIShape.cs プロジェクト: pingli-study/Desktop-Maps
 public DAIShape(DAIShapeType shapeType, int width, RGBColor color)
 {
     this.shapeType = shapeType;
     this.width     = width;
     this.color     = color;
 }