예제 #1
0
 public abstract void Remove(DrawingElement d);
예제 #2
0
 public override void Remove(DrawingElement d)
 {
     elements.Remove(d);
 }
예제 #3
0
 public abstract void Add(DrawingElement d);
예제 #4
0
 public override void Add(DrawingElement d)
 {
     elements.Add(d);
 }
예제 #5
0
 public override void Remove(DrawingElement d)
 {
     Console.WriteLine(
             "Cannot remove from a PrimitiveElement");
 }
예제 #6
0
 public override void Add(DrawingElement d)
 {
     Console.WriteLine(
             "Cannot add to a PrimitiveElement");
 }
예제 #7
0
 public override void Remove(DrawingElement d)
 {
     Console.WriteLine("Cannot remove from a PrimitiveElement");
 }
예제 #8
0
 public override void Add(DrawingElement d)
 {
     Console.WriteLine("Cannot add to a PrimitiveElement");
 }