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

ArrangeElement() protected method

Arranges the element by animating it to the specified bounds.
protected ArrangeElement ( UIElement element, Rect finalRect ) : void
element UIElement The element to animate and arrange.
finalRect System.Windows.Rect The bounds that the element should use once it is arranged.
return void
        protected void ArrangeElement(UIElement element, Rect finalRect)
        {
            ArrangeElement(element, finalRect, true);
        }

Same methods

AnimatedPanel::ArrangeElement ( UIElement element, Rect finalRect, bool isAnimated ) : void