How to disable child page control's swipe

Is it possible to disable the swipe gestures on a PageControl. I have the following structure:

<PageControl ux:Name="parent">
    <Page ux:Name="page1"></Page>
    <Page ux:Name="page2">
        <PageControl ux:Name="children">
            <Page ux:Name="subpage1"></Page>
            <Page ux:Name="subpage2"></Page>
        </PageControl>
    </Page>
    <Page ux:Name="page3">
    </Page>
</PageControl>

I would prefer to disable the swipe gestures on “children” PageControl, but not on the “parent”. Ideally swiping can work just as if page2 had no child PageControl.

Set Interaction="None" on the children PageControl

Thanks Edwin, that works great!