Exemplo n.º 1
0
 public bool EvalForeground()
 {
     Layer layer = new Layer(ForegroundSource, "foreground");
     foreground.Children.Clear();
     foreground.Children.Add(layer);
     return true;
 }
Exemplo n.º 2
0
 public bool EvalBackground()
 {
     Layer layer = new Layer(BackgroundSource, "background");
     background.Children.Clear();
     background.Children.Add(layer);
     return true;
 }