Carousel Page in Xamarin Forms XAML

The CarouselPage page is similar to a tabbed page, but you swipe between pages and there are no navigation pages. Windows Phone users will be most used to this type of UI, so you may choose to only use it there, but it will work on all platforms. Here is the XAML:

<?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="clr-namespace:NogginXamarinFormSample;assembly=NogginXamarinFormSample"
    x:Class="NogginXamarinFormSample.MyCarouselPage">
    <CarouselPage.Children>
        <local:MyPage1 />
        <local:MyPage2 />
        <local:MyPage3 />
    </CarouselPage.Children>
</CarouselPage>

Other Page Controls