Hi,
I have a issue using DirectNavigation when the pages of the app are saved in different .ux files.
If the pages LoginPage, PasswordRecoveryPage and RegisterPage are inlined in the MainView.ux is working fine but when I put them in separate files it’s not working.
Maybe someone can help me. Thanks !!!
MainView.ux
<App Theme="Basic">
<JavaScript File="MainView.js" />
<DockPanel>
<DirectNavigation Active="{currentPage}"/>
<Page ux:Name="LoginPage" Name="LoginPage" Background="Black">
<LoginPage />
</Page>
<Page ux:Name="PasswordRecoveryPage" Name="PasswordRecoveryPage" Background="Black">
<PasswordRecoveryPage />
</Page>
<Page ux:Name="RegisterPage" Name="RegisterPage" Background="Black">
<RegisterPage />
</Page>
</DockPanel>
</App>