I have the following table in the LayoutRoot table for my page, and it correctly disables the login theme transition:
<Grid x:Name="LayoutRoot" Style="{StaticResource LayoutRootStyle}"> <Grid.ChildrenTransitions> <TransitionCollection/> </Grid.ChildrenTransitions>
Note that I am redefining the transitions for the panel using LayoutRootStyle , and I am doing this on the page, not on the resource.
Perhaps these animations flow down from the first control in which they are included, regardless of whether the child controls are disabled. You can try putting both panels at the same level in the user interface hierarchy (peers, not one nested inside the other) and see if this fixes it.
source share