GoForward Constructor uno
Creates a new GoForward
Navigates forward in a Navigation, PageControl, or WebView.
In this example, GoForward
will be used to navigate back to the first page of a PageControl
. This is because "Forward" means "towards the first page" when used in linear navigation.
<PageControl>
<Panel Background="#F00" ux:Name="page1">
<Button Alignment="Center" Text="Go to page 2">
<Clicked>
<NavigateTo Target="page2" />
</Clicked>
</Button>
</Panel>
<Panel Background="#0F0" ux:Name="page2">
<Button Text="Go back" Alignment="Center" Margin="10">
<Clicked>
<GoForward />
</Clicked>
</Button>
</Panel>
</PageControl>
Forward refers to pages that are in front of the active one in navigation order. This trigger is not suitable for navigation that does not have a history or sequence of pages.
See Navigation Order
Creates a new GoForward
The number of seconds after the start of the trigger that the action should be performed.
hide
hide
hide