Example #1
0
 private void CreateGifAnimation(MemoryStream memoryStream)
 {
     gifAnimation = new GifAnimation();
     gifAnimation.CreateGifAnimation(memoryStream);
     gifAnimation.Stretch = Stretch;
     gifAnimation.StretchDirection = StretchDirection;
     this.AddChild(gifAnimation);
 }
Example #2
0
 private void DeletePreviousImage()
 {
     if (image != null)
     {
         this.RemoveLogicalChild(image);
         image = null;
     }
     if (gifAnimation != null)
     {
         this.RemoveLogicalChild(gifAnimation);
         gifAnimation = null;
     }
 }