Exemplo n.º 1
0
 public void DrawAllLayersObjects(Graphics graphics)
 {
     LayerCollection.ForEach(layer =>
     {
         if (layer.visible)
         {
             layer.DrawAllObject(graphics);
         }
     });
 }