Exemplo n.º 1
0
Arquivo: Layout.cs Projeto: ernado/Owl
 public void AddFigure(Figure figure)
 {
     figure.Layout = this;
     Figures.Add(figure);
 }
Exemplo n.º 2
0
Arquivo: Layout.cs Projeto: ernado/Owl
 public void RemoveFigure(Figure figure)
 {
     foreach (var child in Figures.Where(child => child == figure))
         {
             Figures.Remove(child);
             return;
         }
 }
Exemplo n.º 3
0
 public void AddFigure(Figure figure)
 {
     figure.Layout = this;
     Figures.Add(figure);
 }