예제 #1
0
 public abstract void Remove(DrawingElement d);
예제 #2
0
 public abstract void Add(DrawingElement d);
예제 #3
0
 public override void Remove(DrawingElement c)
 {
     throw new Exception("Cannot remove from a PrimitiveElement");
 }
예제 #4
0
 public override void Add(DrawingElement c)
 {
     throw new Exception("Cannot add to a PrimitiveElement");
 }
예제 #5
0
 public override void Remove(DrawingElement d)
 {
     Elements.Remove(d);
 }
예제 #6
0
 public override void Add(DrawingElement d)
 {
     Elements.Add(d);
 }