Yunan.WPF.ImageAnim.GifAnimation.NextFrame C# (CSharp) Method

NextFrame() public method

public NextFrame ( ) : void
return void
        public void NextFrame()
        {
            NextFrame(null, null);
        }

Same methods

GifAnimation::NextFrame ( object sender, EventArgs e ) : void

Usage Example

Example #1
0
            public void NextFrame(object sender, EventArgs args)
            {
                GifAnimation b = (GifAnimation)this.Target;

                if (b != null)
                {
                    b.NextFrame(sender, args);
                }
                else
                {
                    DispatcherTimer c = sender as DispatcherTimer;
                    if (c != null)
                    {
                        c.Tick -= new EventHandler(this.NextFrame);
                    }
                }
            }