GoBack Constructor uno
Creates a new GoBack
Navigates backward in the navigation stack/z-order of a Navigation, PageControl, or WebView.
In this example, GoBack
will be used to navigate away from the first page of a PageControl
.
<PageControl>
<Panel Background="#0F0" ux:Name="firstPage">
<Button Text="GoBack" Alignment="Center" Margin="10">
<Clicked>
<GoBack />
</Clicked>
</Button>
</Panel>
<Panel Background="#F00" ux:Name="secondPage">
<Button Alignment="Center" Text="Go to page 1">
<Clicked>
<NavigateTo Target="firstPage" />
</Clicked>
</Button>
</Panel>
</PageControl>
Backward refers to pages that are behind 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 GoBack
The number of seconds after the start of the trigger that the action should be performed.
hide
hide
hide