System.Windows.Controls.AnimatedPanel.EndArrange C# (CSharp) Method

EndArrange() protected method

Plays the current layout animation when an arrange pass is completed.
protected EndArrange ( ) : void
return void
        protected void EndArrange()
        {
            if ((_animations != null) && (_animations.Count != 0)) {
                _layoutAnimation = new ProceduralAnimationSet(_animations.ToArray());
                _layoutAnimation.Play(this);
            }

            _animations = null;
        }