跳到主要内容
版本:11.0.0

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

信息

For the complete API documentation about this transition, see here.

信息

View the source code on GitHub PageSlide.cs