Ejemplo n.º 1
0
 /**
  * Remove frame
  */
 public void Remove(FrameGraphic frameGraphic)
 {
     lock (isBlocked)
     {
         frames.Remove(frameGraphic);
     }
     PostInvalidate();
 }
Ejemplo n.º 2
0
 /**
  * Add a frame that you want to display
  */
 public void Add(FrameGraphic frameGraphic)
 {
     lock (isBlocked)
     {
         frames.Add(frameGraphic);
     }
     PostInvalidate();
 }