Michael Sabin
Michael Sabin

Reputation: 1759

Slide transitions in Windows Universal app

I am working on porting a Windows Phone Silverlight app to Windows 10 Universal. One thing that I did with my previous silverlight app I used the Windows Phone Toolkit to provide me with Transitions that I could run in code:

var slideTransition = new SlideTransition() { Mode = SlideTransitionMode.SlideRightFadeIn };
ITransition transition = slideTransition.GetTransition(ctrl);
transition.Completed += delegate
{
    transition.Stop();
};
transition.Begin();

However, I can seem to find anything similar for Win10 Universal. I saw that there is a SlideNavigationTransitionInfo class, but I haven't seen any examples of how to use it in code, and it doesn't seem to have the same capabilities as the slideTransition.

Upvotes: 1

Views: 680

Answers (1)

jicler
jicler

Reputation: 823

There is the samples Windows-universal-samples, maybe it can help you.

There also have win8.1 animation sample XAML personality animations sample, it is similar to windows 10.

Upvotes: 1

Related Questions