Hi all, new comer here, had a small question on the PageControl
.
I wanted to disable the DetailsPage when swiping through the navigation
PageContol and enable it once a want to view details on an clicked item in the HomePage.
<PageControl ux:Name="navigation" Padding="10">
<HomePage ux:Name="page1">
<ScrollView>
<Each Items="{items}">
<Item Click="{navigateToDetails}" />
</Each>
</ScrollView>
</HomePage>
<FavouritePage ux:Name="page2" />
<SearchPage ux:Name="page3" />
<DetailsPage ux:Name="detailsPage" />
</PageControl>
Once navigated into the DetailsPage I should be able to navigate back to the HomePage.