Hi guys,
i have a problem: I have a page control like this:
<App Theme="Basic">
<!-- login and registration page with swipe gesture -->
<PageControl Active="{currentPage}">
<Page ux:Name="Login">
<Login />
</Page>
<Page ux:Name="Registration">
<Registration />
</Page>
</PageControl>
<!-- The real application -->
<EdgeNavigator ux:Name="MyEdge">
<Panel Width="150" Edge="Left" Background="#f63" />
<Page ux:Name="Home" Background="#fff">
<Text Value="MyHome" />
</Page>
</EdgeNavigator>
</App>
Inside the class Registration
i have a button like this:
<Button Text="Ok" Alignment="Center" />
<Clicked>
<NavigateTo Target="Home" NavigationContext="EdgeNavigator" />
</Clicked>
</Button>
My intention is: when a user press that button, the app redirect him to the edge navigator.
This is my error log:
…\D:\Code\FuseProjects\NavigationProva\registration.ux(246): E8001: The node ‘EdgeNavigator’ can not be used here: The type must be compatible with ‘Fuse.Navigation.INavigation’
D:\Code\FuseProjects\NavigationProva\registration.ux(246,1): Error E8001: The node ‘EdgeNavigator’ can not be used here: The type must be compatible with ‘Fuse.Navigation.INavigation’
…\D:\Code\FuseProjects\NavigationProva\MainView.ux(107): E8001: ‘Panel’ does not have an attached property called ‘EdgeNavigator.Edge’, nor does it support implicit set-properties
I hope anyone can help me! :\