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