Page Slide Transition
The page slide transition moves the old page out of view, and the new page into view, for the given duration. You can specify the slide direction using the orientation property (default horizontal).
XAML
<PageSlide Duration="0:00:00.500" Orientation="Vertical" />
C#
var transition = new PageSlide(TimeSpan.FromMilliseconds(500),
PageSlide.SlideAxis.Vertical);
More Information
info
For the complete API documentation about this transition, see here.
info
View the source code on GitHub PageSlide.cs