Exemplo n.º 1
0
 public void Remove(ShapeComponent shapeComponent)
 {
     throw new NotSupportedException();
 }
Exemplo n.º 2
0
 public ShrinkShape(ShapeComponent shape)
 {
     this.shape = shape as MyShape;
 }
Exemplo n.º 3
0
 public DrawShape(ShapeComponent shape)
 {
     this.shape = shape as MyShape;
 }
Exemplo n.º 4
0
 public virtual void Add(ShapeComponent shapeComponent)
 {
     throw new NotSupportedException();
 }
Exemplo n.º 5
0
 public DrawFinishedShape(ShapeComponent shape)
 {
     this.shape = shape as MyShape;
 }
Exemplo n.º 6
0
 public void Remove(ShapeComponent shapeComponent)
 {
     shapeComponents.Remove(shapeComponent);
 }
Exemplo n.º 7
0
 public override void Add(ShapeComponent shapeComponent)
 {
     shapeComponents.Add(shapeComponent);
 }
Exemplo n.º 8
0
 public EnlargeShape(ShapeComponent shape)
 {
     this.shape = shape as MyShape;
 }
Exemplo n.º 9
0
 public MoveHoldShape(ShapeComponent shape)
 {
     this.shape = shape as MyShape;
 }