Hi,
If I have something like that (a PageControl inside a Page that is in a DirectNavigation):
<DockPanel>
<DirectNavigation ux:Name="_navRegisterLogin" Active="1" />
<Style>
<Page ux:Cascade="false">
<EnteringAnimation>
<Move Y="1" RelativeTo="Size" Duration="2" Easing="CircularIn" EasingBack="ElasticIn" />
</EnteringAnimation>
<ExitingAnimation>
<Move Y="2" RelativeTo="Size" Duration="2" Easing="CircularOut" EasingBack="ElasticIn" />
</ExitingAnimation>
</Page>
</Style>
</DockPanel>
<Page ux:Name="1">
<Panel DockPanel.Dock="Bottom" Padding="2">
<PageIndicator PageProgress="ThePages" Alignment="HorizontalCenter"/>
</Panel>
<PageControl ux:Name="ThePages">
...
<PageControl>
</Page>
<Page ux:Name="2">
</Page>
All the slides of the PageControl are Actives (the dots are all 100% fill) and the ActivatingAnimation dont work!