예제 #1
0
 public virtual void Draw(Graphics grfx)
 {
     if (ShapeList.ContainsKey(CurrentTab))
     {
         foreach (Shape item in ShapeList[CurrentTab])
         {
             DrawShape(grfx, item);
         }
     }
 }