public ShapeAndColor(ShapeNodeShape shape, Color color)
 {
     this.shape = shape;
     this.color = color;
 }
コード例 #2
0
 public ShapeAndBrush(ShapeNodeShape shape, Brush brush)
 {
     this.shape = shape;
     this.brush = brush;
 }