Navigate to a page.

This action is for navigating a PageControl directly. Consider using Router instead to perform more structured navigation.

Example

<PageControl>
    <Page>
        <Grid Background="#282a37" Rows="auto,1*" Padding="20">
            <Image Alignment="Center" Url="https://fusetools-web.azureedge.net/fusetools-web/v1464939897151/images/logo_white.png" Width="100" Height="100" />
            <Button Text="Settings">
                <Clicked>
                    <NavigateTo Target="settings" />
                </Clicked>
            </Button>
        </Grid>
    </Page>
    <Page ux:Name="settings">
        <Grid Padding="20" Rows="auto, 30" Background="#282a37">
            <Text Value="Settings" Color="#fff" Alignment="TopCenter" FontSize="20"/>
            <Slider />
        </Grid>
    </Page>
</PageControl>

Location

Namespace
Fuse.Navigation
Package
Fuse.Navigation 2.9.1
Show Uno properties and methods

Interface of NavigateTo

Bypass : bool ux

Avoids transition animation while navigating when set to true.

Inherited from NavigationTriggerAction

Inherited from TriggerAction

AtProgress : float ux

A value between 0 and 1 for when the action should be performed. Alternative to Delay.

Delay : float ux

The number of seconds after the start of the trigger that the action should be performed.

TargetNode : Node ux

The node that the action targets. If not specified then the enclsoing Trigger will be used. Several triggers can look for a target starting from this point. Some triggers require a Target to be specified.

Unroot uno

Called when the owner of this object is unrooted. This gives an action to cleanup resources or cancel pending actions.

Inherited from PropertyObject

Inherited from object

Attached UX Attributes

GlobalKey (attached by Resource) : string ux

The ux:Global attribute creates a global resource that is accessible everywhere in UX markup.

Implemented Interfaces