May 2019
Intermediate to advanced
504 pages
11h 50m
English
CarouselPage and TabbedPage are two Xamarin.Forms page implementations that derive from the MultiPage abstraction. These pages can each host multiple pages with unique navigation between them.
To illustrate the usage of MultiPage implementations, we can utilize our previously implemented pages:
<?xml version="1.0" encoding="UTF-8"?> <CarouselPage xmlns="http://xamarin.com/schemas/2014/forms" xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" xmlns:local="using:FirstXamarinFormsApplication.Client" x:Class="FirstXamarinFormsApplication.Client.ItemsCarousel"> <CarouselPage.Children> <local:ListItemView BindingContext="{Binding .}" Icon="Xamarin.png"/> <local:ItemView BindingContext="{Binding Items[0]}" Title="First" ...
Read now
Unlock full access