Change Self Opacity

Hi,

In my code I have a DirectNavigation and a EnteringAnimation and ExitingAnimation.

Like this:

<EnteringAnimation>
    <Move X="1" RelativeTo="Size" Duration="0.5" Easing="CircularInOut" />
</EnteringAnimation>

But how can I change the Opacity of the Pages in my DirectNavigation… Like Target=“Self.Opacity”?

Is posible to Change a Value without specify a ux:Name like a target?

You can specify names to the elements in your style.

<Style>
  <Page ux:Name="mySelf">
     <Change mySelf.Opacity="0" Duration="0.5"/>
  </Page>
</Style>

Crisitian : You need to name things with ux:Name to use the Change and Set animators