Click here to Skip to main content
15,895,256 members
Articles / Desktop Programming / WPF

WPF Layout to Layout Transitions

Rate me:
Please Sign up or sign in to vote.
5.00/5 (20 votes)
27 Nov 2012CPOL4 min read 44.7K   2.9K   43  
Layout to layout transitions made easy
using System.Windows;

namespace Bornander.UI.Animations
{
    public interface IArrangeAnimator
    {
        Rect Arrange(double elapsedTime, Point desiredPosition, Size desiredSize, Point currentPosition, Size currentSize);
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior) EPAM
Ukraine Ukraine

Comments and Discussions