CreateGifAnimation() public method

public CreateGifAnimation ( MemoryStream memoryStream ) : void
memoryStream System.IO.MemoryStream
return void
Exemplo n.º 1
0
 private void CreateGifAnimation(MemoryStream memoryStream)
 {
     _gifAnimation = new GifAnimation();
     _gifAnimation.CreateGifAnimation(memoryStream);
     _gifAnimation.Stretch          = Stretch;
     _gifAnimation.StretchDirection = StretchDirection;
     this.AddChild(_gifAnimation);
 }
Exemplo n.º 2
0
 private void CreateGifAnimation(MemoryStream memoryStream)
 {
     _gifAnimation = new GifAnimation();
     _gifAnimation.CreateGifAnimation(memoryStream);
     _gifAnimation.Stretch = Stretch;
     _gifAnimation.StretchDirection = StretchDirection;
     this.AddChild(_gifAnimation);
 }