I am developing a project on WPF using the MVVM pattern. I use MVVM Light. How is it possible to implement animation of transitions from one view to another? For example, the smooth "attenuation" of one and the appearance of the other.

    1 answer 1

    I do not know how this is done in MVVM Light, I usually define a StoryBoard inside the desired element with the desired animation, I attach the animation trigger to the desired property of the element through which the transition is implemented (say, Button.IsPressed). Everything is working. Here more detail https://msdn.microsoft.com/ru-ru/library/ms742868(v=vs.110).aspx