Skip to content

Instantly share code, notes, and snippets.

@jmservera
Last active August 29, 2015 14:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jmservera/94036ad78c165febb8bb to your computer and use it in GitHub Desktop.
Save jmservera/94036ad78c165febb8bb to your computer and use it in GitHub Desktop.
Disable main transitions in page
<Page
x:Class="App1.MainPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:App1"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d">
<Page.Resources>
<Style TargetType="Grid">
<Setter Property="ChildrenTransitions">
<Setter.Value>
<TransitionCollection/>
</Setter.Value>
</Setter>
</Style>
</Page.Resources>
<Grid Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
<!-- Content -->
</Grid>
</Page>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment