<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" media="screen" href="/styles/xslt/rss.xslt"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:c9="http://channel9.msdn.com">
<channel>
	<title>Comment Feed for Channel 9 - Simplify Page Transitions in Windows Phone 7 Silverlight Applications</title>
	<atom:link rel="self" type="application/rss+xml" href="http://channel9.msdn.com/Blogs/SlickThought/Simplify-Page-Transitions-in-Windows-Phone-7-Silverlight-Applications/RSS"></atom:link>
	<image>
		<url>http://ecn.channel9.msdn.com/o9/previewImages/100/546486_100x75.jpg</url>
		<title>Channel 9 - Simplify Page Transitions in Windows Phone 7 Silverlight Applications</title>
		<link></link>
	</image>
	<description>
Update: To see how to extend this solution for custom per-page transitions, see

my follow-on article.If you have played around with Silverlight on Windows Phone 7, one thing you may have tried to figure out is how to add nice transitions between different pages of your application. By default, Windows Phone page transitions aren’t really transitions at all.
 The new PhoneNavigationPage is just popped into the root PhoneNavigationFrame. Effective, yes. Cool? Certainly not. Face it, modern mobile applications need to not only be functional, but also stylish. Simple “snap” transitions just don’t
 cut it. 
The most common solution to this problem is to use brute force and manage the transitions yourself. You commonly see a “pattern” used in WP7 apps where events in your current page launch a Storyboard animation. When that animation is complete, the actual
 navigation to the new page is invoked and the new page then runs its own Storyboard once it is loaded. It looks something like this… 
// CURRENT PAGE private void CurrentPage_Click(object sender, EventArgs e) { &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;SomeStoryboard.Completed &amp;#43;= new EventHandler(SomeStoryboard_Completed); &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;SomeStoryboard.Begin(); } void SomeStoryboard_Completed(object sender, EventArgs e) { &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;NavigationService.Navigate(new Uri(&amp;quot;/Favorites&amp;quot;, UriKind.Relative)); }
&amp;nbsp; 
// NEWPAGE protected override void OnNavigatedTo(Microsoft.Phone.Navigation.PhoneNavigationEventArgs e) { &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;base.OnNavigatedTo(e); &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;SomeNewStoryboard.Begin(); }
It’s a straightforward solution, and it works just fine if your app has only a few pages. If you have lots of pages in your application, however, it becomes quite tedious and hard to maintain. 
A better solution can be found by turning to the Silverlight Toolkit. The great thing about having Silverlight on WP7 is that you can leverage many existing Silverlight assets. In this case, we leverage the
TransitioningContentControl from the Toolkit. The TransitioningContentControl was created for the traditional navigation-based Silverlight application to solve the same problem we are currently facing. 
To get started, download the 
Silverlight Toolkit from 
CodePlex. Once installed, you will need to add the System.Windows.Controls.Layout.Toolkit assembly to your WP7 project. 
If you are not familiar with the TransitioningContentControl, it&#39;s a fairly simple control. The TCC is comprised of two
ContentPresenters – current and previous. When you update the Content property of the TCC, it will take the content of the
CurrentContentPresenter (if present) and move it to the PreviousContentPresenter. The new content is loaded into the
CurrentContentPresenter. The TCC, however, manages the visibility of the previous and current
ContentPresenters so that the “old” content is visible and the “new” content is hidden. It then uses a
Storyboard, which is defined as part of the TCC’s VisualStateManager, to transition from the “old” content to the “new” content. If you are not familiar with
Storyboards, the Visual State Manager, or other designer-type topics, have no fear. The TCC comes with a set of standard transitions, which you can use out of the box. 
Getting the TCC to work with our WP7 app is a simple process. First, we need to modify the
ControlTemplate for our PhoneNavigationFrame to use the TCC. By doing so, we automatically enable transitions between any
PhoneNavigationPages we add to our app. To change the PhoneNavigationFrame, open the
App.xaml file. Then, add a couple of namespaces to the xaml: 
xmlns:layout=&amp;quot;clr-namespace:System.Windows.Controls;assembly=System.Windows.Controls.Layout.Toolkit&amp;quot;xmlns:vsm=&amp;quot;clr-namespace:System.Windows;assembly=System.Windows&amp;quot; 
Now, modify the PhoneNavigationFrame as shown below: 
&amp;lt;phoneNavigation:PhoneApplicationFrame x:Name=&amp;quot;RootFrame&amp;quot; Source=&amp;quot;/MainPage.xaml&amp;quot;&amp;gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;phoneNavigation:PhoneApplicationFrame.Template&amp;gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;ControlTemplate&amp;gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;layout:TransitioningContentControl Content=&amp;quot;{TemplateBinding Content}&amp;quot; Style=&amp;quot;{StaticResource TransitioningStyle}&amp;quot;/&amp;gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;/ControlTemplate&amp;gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;/phoneNavigation:PhoneApplicationFrame.Template&amp;gt; &amp;lt;/phoneNavigation:PhoneApplicationFrame&amp;gt; 
The TCC has its Style property set to a StaticResource. This
Style provides the default transitions and is also where you would add your own
VisualStates and Storyboards if you would like to add custom transitions.&amp;nbsp; This
Style can be found in the Silverlight Toolkit in the TCC Sample Application, or you can get it from the sample WP7 application linked to at the end this article. The
Style is long, so I won’t show the entire thing here, but the first parts of the
Style are included below to give you an idea of what the Style contains and how it is used by the TCC. 
&amp;lt;Style x:Key=&amp;quot;TransitioningStyle&amp;quot; TargetType=&amp;quot;layout:TransitioningContentControl&amp;quot;&amp;gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;Setter Property=&amp;quot;Transition&amp;quot; Value=&amp;quot;DefaultTransition&amp;quot; /&amp;gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;Setter Property=&amp;quot;Template&amp;quot;&amp;gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;Setter.Value&amp;gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;ControlTemplate TargetType=&amp;quot;layout:TransitioningContentControl&amp;quot;&amp;gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;Border Background=&amp;quot;{TemplateBinding Background}&amp;quot; BorderBrush=&amp;quot;{TemplateBinding BorderBrush}&amp;quot; BorderThickness=&amp;quot;{TemplateBinding BorderThickness}&amp;quot; CornerRadius=&amp;quot;2&amp;quot;&amp;gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;vsm:VisualStateManager.VisualStateGroups&amp;gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;vsm:VisualStateGroup x:Name=&amp;quot;PresentationStates&amp;quot;&amp;gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;vsm:VisualState x:Name=&amp;quot;DefaultTransition&amp;quot;&amp;gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;Storyboard&amp;gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;DoubleAnimationUsingKeyFrames BeginTime=&amp;quot;00:00:00&amp;quot; Storyboard.TargetName=&amp;quot;CurrentContentPresentationSite&amp;quot; Storyboard.TargetProperty=&amp;quot;(UIElement.Opacity)&amp;quot;&amp;gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;SplineDoubleKeyFrame KeyTime=&amp;quot;00:00:00&amp;quot; Value=&amp;quot;0&amp;quot; /&amp;gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;SplineDoubleKeyFrame KeyTime=&amp;quot;00:00:02.300&amp;quot; Value=&amp;quot;1&amp;quot; /&amp;gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;/DoubleAnimationUsingKeyFrames&amp;gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;DoubleAnimationUsingKeyFrames BeginTime=&amp;quot;00:00:00&amp;quot; Storyboard.TargetName=&amp;quot;PreviousContentPresentationSite&amp;quot; Storyboard.TargetProperty=&amp;quot;(UIElement.Opacity)&amp;quot;&amp;gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;SplineDoubleKeyFrame KeyTime=&amp;quot;00:00:00&amp;quot; Value=&amp;quot;1&amp;quot; /&amp;gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;SplineDoubleKeyFrame KeyTime=&amp;quot;00:00:02.300&amp;quot; Value=&amp;quot;0&amp;quot; /&amp;gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;/DoubleAnimationUsingKeyFrames&amp;gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;/Storyboard&amp;gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;/vsm:VisualState&amp;gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;vsm:VisualState x:Name=&amp;quot;Normal&amp;quot;&amp;gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;Storyboard&amp;gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;ObjectAnimationUsingKeyFrames BeginTime=&amp;quot;00:00:00&amp;quot; Storyboard.TargetName=&amp;quot;PreviousContentPresentationSite&amp;quot; Storyboard.TargetProperty=&amp;quot;(UIElement.Visibility)&amp;quot;&amp;gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;DiscreteObjectKeyFrame KeyTime=&amp;quot;00:00:00&amp;quot;&amp;gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;DiscreteObjectKeyFrame.Value&amp;gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;Visibility&amp;gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Collapsed &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;/Visibility&amp;gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;/DiscreteObjectKeyFrame.Value&amp;gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;/DiscreteObjectKeyFrame&amp;gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;/ObjectAnimationUsingKeyFrames&amp;gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;/Storyboard&amp;gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;/vsm:VisualState&amp;gt; 
Though I won’t break the Style down in detail, I’ll point a couple of highlights. First, the
Transition property is set to the VisualState that you would like to use as the transition between pages. Every transition will use this
VisualState storyboard. The DefaultTransition VisualState is an example of how
Storyboards are constructed for use in a transition. As you can see, each
Storyboard must target both the CurrentContentPresentationSite and the
PreviousContentPresentationSite (these are the ContentPresenters discussed earlier). You can target more than one property, if you like. Below is a custom transition that rotates the projection plane and the opacity of the
ContentPresenters. 
&amp;lt;vsm:VisualState x:Name=&amp;quot;SwingTransition&amp;quot;&amp;gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;Storyboard&amp;gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;DoubleAnimationUsingKeyFrames Storyboard.TargetProperty=&amp;quot;(UIElement.Projection).(PlaneProjection.RotationY)&amp;quot; Storyboard.TargetName=&amp;quot;PreviousContentPresentationSite&amp;quot;&amp;gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;EasingDoubleKeyFrame KeyTime=&amp;quot;0&amp;quot; Value=&amp;quot;0&amp;quot;/&amp;gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;EasingDoubleKeyFrame KeyTime=&amp;quot;0:0:0.7&amp;quot; Value=&amp;quot;90&amp;quot;/&amp;gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;/DoubleAnimationUsingKeyFrames&amp;gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;DoubleAnimationUsingKeyFrames Storyboard.TargetProperty=&amp;quot;(UIElement.Opacity)&amp;quot; Storyboard.TargetName=&amp;quot;PreviousContentPresentationSite&amp;quot;&amp;gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;EasingDoubleKeyFrame KeyTime=&amp;quot;0&amp;quot; Value=&amp;quot;1&amp;quot;/&amp;gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;EasingDoubleKeyFrame KeyTime=&amp;quot;0:0:0.7&amp;quot; Value=&amp;quot;0&amp;quot;/&amp;gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;/DoubleAnimationUsingKeyFrames&amp;gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;DoubleAnimation Duration=&amp;quot;0&amp;quot; To=&amp;quot;0&amp;quot; Storyboard.TargetProperty=&amp;quot;(UIElement.Projection).(PlaneProjection.CenterOfRotationX)&amp;quot; Storyboard.TargetName=&amp;quot;PreviousContentPresentationSite&amp;quot; /&amp;gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;DoubleAnimation Duration=&amp;quot;0&amp;quot; To=&amp;quot;1&amp;quot; Storyboard.TargetProperty=&amp;quot;(UIElement.Projection).(PlaneProjection.CenterOfRotationX)&amp;quot; Storyboard.TargetName=&amp;quot;CurrentContentPresentationSite&amp;quot; /&amp;gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;DoubleAnimationUsingKeyFrames Storyboard.TargetProperty=&amp;quot;(UIElement.Projection).(PlaneProjection.RotationY)&amp;quot; Storyboard.TargetName=&amp;quot;CurrentContentPresentationSite&amp;quot;&amp;gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;EasingDoubleKeyFrame KeyTime=&amp;quot;0&amp;quot; Value=&amp;quot;90&amp;quot;/&amp;gt; &amp;lt;EasingDoubleKeyFrame KeyTime=&amp;quot;0:0:0.7&amp;quot; Value=&amp;quot;0&amp;quot;/&amp;gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;/DoubleAnimationUsingKeyFrames&amp;gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;DoubleAnimationUsingKeyFrames Storyboard.TargetProperty=&amp;quot;(UIElement.Opacity)&amp;quot; Storyboard.TargetName=&amp;quot;CurrentContentPresentationSite&amp;quot;&amp;gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;EasingDoubleKeyFrame KeyTime=&amp;quot;0&amp;quot; Value=&amp;quot;0&amp;quot;/&amp;gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;EasingDoubleKeyFrame KeyTime=&amp;quot;0:0:0.7&amp;quot; Value=&amp;quot;1&amp;quot;/&amp;gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;/DoubleAnimationUsingKeyFrames&amp;gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;/Storyboard&amp;gt; &amp;lt;/vsm:VisualState&amp;gt; 
That’s it. You now have transitions any time you Navigate to a new PhoneNavigationPage.&amp;nbsp;
 
</description>
	<link></link>
	<language>en</language>
	<pubDate>Wed, 19 Jun 2013 12:43:41 GMT</pubDate>
	<lastBuildDate>Wed, 19 Jun 2013 12:43:41 GMT</lastBuildDate>
	<generator>Rev9</generator>
	<item>
		<title>Re: Simplify Page Transitions in Windows Phone 7 Silverlight Applications</title>
		<description>
			<![CDATA[
<p>Thanks, I like the video. Would love to see a bit more high quality video. I downloaded the HWMV (High) but can't read the blend screens.</p>
<p>posted by Matthijs</p>]]>
		</description>
		<link>http://channel9.msdn.com/Blogs/SlickThought/Simplify-Page-Transitions-in-Windows-Phone-7-Silverlight-Applications#c634083412060000000</link>
		<pubDate>Sat, 01 May 2010 20:06:46 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Blogs/SlickThought/Simplify-Page-Transitions-in-Windows-Phone-7-Silverlight-Applications#c634083412060000000</guid>
		<dc:creator>Matthijs</dc:creator>
	</item>
	<item>
		<title>Re: Simplify Page Transitions in Windows Phone 7 Silverlight Applications</title>
		<description>
			<![CDATA[
<p>Sources please?</p>
<p>posted by ararog</p>]]>
		</description>
		<link>http://channel9.msdn.com/Blogs/SlickThought/Simplify-Page-Transitions-in-Windows-Phone-7-Silverlight-Applications#c634083543670000000</link>
		<pubDate>Sat, 01 May 2010 23:46:07 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Blogs/SlickThought/Simplify-Page-Transitions-in-Windows-Phone-7-Silverlight-Applications#c634083543670000000</guid>
		<dc:creator>ararog</dc:creator>
	</item>
	<item>
		<title>Re: Simplify Page Transitions in Windows Phone 7 Silverlight Applications</title>
		<description>
			<![CDATA[
<p>I will be getting source up to my site, slickthought.net, in the coming days.&nbsp; I had a bit of a hoster issue that took my site offline so we had to pull the download links from the article.&nbsp; Check the site at the end of the week and I should have a post
 up pointing to the download.</p>
<p>posted by SlickThought</p>]]>
		</description>
		<link>http://channel9.msdn.com/Blogs/SlickThought/Simplify-Page-Transitions-in-Windows-Phone-7-Silverlight-Applications#c634084889880000000</link>
		<pubDate>Mon, 03 May 2010 13:09:48 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Blogs/SlickThought/Simplify-Page-Transitions-in-Windows-Phone-7-Silverlight-Applications#c634084889880000000</guid>
		<dc:creator>SlickThought</dc:creator>
	</item>
	<item>
		<title>Re: Simplify Page Transitions in Windows Phone 7 Silverlight Applications</title>
		<description>
			<![CDATA[
<p>Great example! That's what I needed.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p><strong>OOOPS, SOME PROBLEM</strong></p>
<p>For the reasons I don't know, adding a reference to Layout.Toolkit prevents aplication from starting, i.e. I see only black screen instead of first page. This happens even when running your source file.</p>
<p>&nbsp;</p>
<p>I have Windows Phone 7 CTP from April refresh and Silverlight Toolkit v3 from November 2009.</p>
<p>&nbsp;</p>
<p>What is going on?</p>
<p>posted by Hikari</p>]]>
		</description>
		<link>http://channel9.msdn.com/Blogs/SlickThought/Simplify-Page-Transitions-in-Windows-Phone-7-Silverlight-Applications#c634084952160000000</link>
		<pubDate>Mon, 03 May 2010 14:53:36 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Blogs/SlickThought/Simplify-Page-Transitions-in-Windows-Phone-7-Silverlight-Applications#c634084952160000000</guid>
		<dc:creator>Hikari</dc:creator>
	</item>
	<item>
		<title>Re: Simplify Page Transitions in Windows Phone 7 Silverlight Applications</title>
		<description>
			<![CDATA[
<p>Hmmmm... not sure.&nbsp; I just got the April CTP up and running and have not had a chance to try out the FindAZip on it yet.&nbsp; Maybe grab the TransitioningContentControl source code from the Toolkit and add that directly to your project.&nbsp; Might be able to identify
 the problem that way.&nbsp; I will try and get a look at it when I get some free time.</p>
<p>posted by SlickThought</p>]]>
		</description>
		<link>http://channel9.msdn.com/Blogs/SlickThought/Simplify-Page-Transitions-in-Windows-Phone-7-Silverlight-Applications#c634085758430000000</link>
		<pubDate>Tue, 04 May 2010 13:17:23 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Blogs/SlickThought/Simplify-Page-Transitions-in-Windows-Phone-7-Silverlight-Applications#c634085758430000000</guid>
		<dc:creator>SlickThought</dc:creator>
	</item>
	<item>
		<title>Re: Simplify Page Transitions in Windows Phone 7 Silverlight Applications</title>
		<description>
			<![CDATA[
<p>There is a major bug with the Windows Phone 7 April Refresh that prevents it from loading any code signed assemblies that are not part of the Windows Phone 7 SDK. There is a work around</p>
<p><a href="http://www.manyniches.com/windows-phone/signed-assemblies-bug-in-the-windows-phone-tools-ctp-refresh/">http&#58;&#47;&#47;www.manyniches.com&#47;windows-phone&#47;signed-assemblies-bug-in-the-windows-phone-tools-ctp-refresh&#47;</a></p>
<p>&nbsp;</p>
<p>you have to do this for nearly every control you add outside of the base sdk. Even standard silverlight dlls like System.Windows.Browser.dll</p>
<p>&nbsp;</p>
<p>Jeff:</p>
<p>There is another bug with your app in the new refresh. They got rid of the TopLevelNavigationService property alltogether. I haven't been able to find an alternative so your global error handler breaks.
</p>
<p>posted by Jeff Klawiter</p>]]>
		</description>
		<link>http://channel9.msdn.com/Blogs/SlickThought/Simplify-Page-Transitions-in-Windows-Phone-7-Silverlight-Applications#c634085805490000000</link>
		<pubDate>Tue, 04 May 2010 14:35:49 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Blogs/SlickThought/Simplify-Page-Transitions-in-Windows-Phone-7-Silverlight-Applications#c634085805490000000</guid>
		<dc:creator>Jeff Klawiter</dc:creator>
	</item>
	<item>
		<title>Re: Simplify Page Transitions in Windows Phone 7 Silverlight Applications</title>
		<description>
			<![CDATA[
<p>Thanks for the info Jeff!&nbsp; </p>
<p>&nbsp;</p>
<p>For the TopLevelNavigationService... (I don't have the code in front of me - on a different laptop), if it is what I am thinking of, you will have to use the Application.Current.RootVisual and cast it to a PageNavigationFrame and grab the Nav service from
 there.&nbsp; That's my guess...</p>
<p>posted by SlickThought</p>]]>
		</description>
		<link>http://channel9.msdn.com/Blogs/SlickThought/Simplify-Page-Transitions-in-Windows-Phone-7-Silverlight-Applications#c634086894110000000</link>
		<pubDate>Wed, 05 May 2010 20:50:11 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Blogs/SlickThought/Simplify-Page-Transitions-in-Windows-Phone-7-Silverlight-Applications#c634086894110000000</guid>
		<dc:creator>SlickThought</dc:creator>
	</item>
	<item>
		<title>Re: Simplify Page Transitions in Windows Phone 7 Silverlight Applications</title>
		<description>
			<![CDATA[
<p>Hey Jeff</p>
<p>&nbsp;</p>
<p>Nice one!&nbsp; </p>
<p>&nbsp;</p>
<p>But I can't get it to run in my solution. got rid of the signed assemblies bug but I get a senseless XAML parseexception from this line:</p>
<p>&lt;layout:TransitioningContentControl Content=&quot;{TemplateBinding Content}&quot; Style=&quot;{StaticResource TransitioningStyle}&quot; /&gt;</p>
<p>&nbsp;</p>
<p>When I run it, I get this:</p>
<p>XamlParseException occured</p>
<p>2024 An error has occurred. [Line: 19 Position: 12]</p>
<p>&nbsp;</p>
<p>Parser says this:</p>
<p>Error&nbsp;&nbsp; &nbsp;1&nbsp;&nbsp; &nbsp;[Parser_SetValue_Exception]<br />Arguments: System.Windows.FrameworkElement.Style<br />Debugging resource strings are unavailable. Often the key and arguments provide sufficient information to diagnose the problem. See <a href="http://go.microsoft.com/fwlink/?linkid=106663&amp;Version=4.0.50401.0&amp;File=System.Windows.dll&amp;Key=Parser_SetValue_Exception">http&#58;&#47;&#47;go.microsoft.com&#47;fwlink&#47;&#63;linkid&#61;106663&#38;Version&#61;4.0.50401.0&#38;File&#61;System.Windows.dll&#38;Key&#61;Parser_SetValue_Exception</a> [Line:
 144 Position: 39]&nbsp;&nbsp; &nbsp;C:\Users\Hypi\Documents\Visual Studio 2010\Projects\WinPhoneRSS\WinPhoneRSS\App.xaml&nbsp;&nbsp; &nbsp;774&nbsp;&nbsp; &nbsp;9&nbsp;&nbsp; &nbsp;WinPhoneRSS</p>
<p>&nbsp;</p>
<p>when I remove this line, it works but without transitions for sure <img src='http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-5.gif' alt='Wink' /></p>
<p>&nbsp;</p>
<p>u have any clue?</p>
<p>posted by Hypi</p>]]>
		</description>
		<link>http://channel9.msdn.com/Blogs/SlickThought/Simplify-Page-Transitions-in-Windows-Phone-7-Silverlight-Applications#c634096163770000000</link>
		<pubDate>Sun, 16 May 2010 14:19:37 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Blogs/SlickThought/Simplify-Page-Transitions-in-Windows-Phone-7-Silverlight-Applications#c634096163770000000</guid>
		<dc:creator>Hypi</dc:creator>
	</item>
	<item>
		<title>Re: Simplify Page Transitions in Windows Phone 7 Silverlight Applications</title>
		<description>
			<![CDATA[
<p>I just got the project working under the April CTP.&nbsp; At this point, I brute forced it by putting the TransitioningContentControl source directly into my project.&nbsp; I am working on a blog post / screencast to show how to get things working.&nbsp; I have a couple
 of other things I want to explore before I finish it up.&nbsp; Keep an eye here or on my blog -
<a href="http://slickthought.net">http://slickthought.net</a> for details.&nbsp; Hopefully in the next day or so...</p>
<p>posted by SlickThought</p>]]>
		</description>
		<link>http://channel9.msdn.com/Blogs/SlickThought/Simplify-Page-Transitions-in-Windows-Phone-7-Silverlight-Applications#c634097930420000000</link>
		<pubDate>Tue, 18 May 2010 15:24:02 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Blogs/SlickThought/Simplify-Page-Transitions-in-Windows-Phone-7-Silverlight-Applications#c634097930420000000</guid>
		<dc:creator>SlickThought</dc:creator>
	</item>
	<item>
		<title>Re: Simplify Page Transitions in Windows Phone 7 Silverlight Applications</title>
		<description>
			<![CDATA[
<p>thx jeff, I will keep an eye on it.</p>
<p>posted by Hypi</p>]]>
		</description>
		<link>http://channel9.msdn.com/Blogs/SlickThought/Simplify-Page-Transitions-in-Windows-Phone-7-Silverlight-Applications#c634098608310000000</link>
		<pubDate>Wed, 19 May 2010 10:13:51 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Blogs/SlickThought/Simplify-Page-Transitions-in-Windows-Phone-7-Silverlight-Applications#c634098608310000000</guid>
		<dc:creator>Hypi</dc:creator>
	</item>
	<item>
		<title>Re: Simplify Page Transitions in Windows Phone 7 Silverlight Applications</title>
		<description>
			<![CDATA[
<p>You can see a quick fix to getting the TransitioningContentControl working with the April CTP here -
<a href="http://channel9.msdn.com/posts/SlickThought/Windows-Phone-7-April-CTP-and-TransitioningContentControl/">
http://channel9.msdn.com/posts/SlickThought/Windows-Phone-7-April-CTP-and-TransitioningContentControl/</a></p>
<p>posted by SlickThought</p>]]>
		</description>
		<link>http://channel9.msdn.com/Blogs/SlickThought/Simplify-Page-Transitions-in-Windows-Phone-7-Silverlight-Applications#c634099847080000000</link>
		<pubDate>Thu, 20 May 2010 20:38:28 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Blogs/SlickThought/Simplify-Page-Transitions-in-Windows-Phone-7-Silverlight-Applications#c634099847080000000</guid>
		<dc:creator>SlickThought</dc:creator>
	</item>
	<item>
		<title>Re: Simplify Page Transitions in Windows Phone 7 Silverlight Applications</title>
		<description>
			<![CDATA[
<p>Hi Jeff, would either the &quot;brute force&quot; or <em>TransitioningContentControl </em>
method for Page transitions be suitable for animating the transition between different orientations of the same Page? For example, fading out the portait view and fading in the landscape view when the phone is oriented into landscape mode?</p>
<p>&nbsp;</p>
<p>Thanks!</p>
<p>posted by MikeKnoop</p>]]>
		</description>
		<link>http://channel9.msdn.com/Blogs/SlickThought/Simplify-Page-Transitions-in-Windows-Phone-7-Silverlight-Applications#c634104122780000000</link>
		<pubDate>Tue, 25 May 2010 19:24:38 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Blogs/SlickThought/Simplify-Page-Transitions-in-Windows-Phone-7-Silverlight-Applications#c634104122780000000</guid>
		<dc:creator>MikeKnoop</dc:creator>
	</item>
	<item>
		<title>Re: Simplify Page Transitions in Windows Phone 7 Silverlight Applications</title>
		<description>
			<![CDATA[
<p>I dont think TCC would do the trick.&nbsp; I took just a quick look, but an orientation change does not actually change the page content, so the TCC would not be invovled in at all.&nbsp; It would just behave &quot;as normal&quot;.&nbsp; You would need to wire up the OnOrientationChanged
 event at the page level and control an animation from there I think.&nbsp; I want to say Peter Torr has a MIX10 video that shows him doing this.</p>
<p>posted by SlickThought</p>]]>
		</description>
		<link>http://channel9.msdn.com/Blogs/SlickThought/Simplify-Page-Transitions-in-Windows-Phone-7-Silverlight-Applications#c634104719200000000</link>
		<pubDate>Wed, 26 May 2010 11:58:40 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Blogs/SlickThought/Simplify-Page-Transitions-in-Windows-Phone-7-Silverlight-Applications#c634104719200000000</guid>
		<dc:creator>SlickThought</dc:creator>
	</item>
	<item>
		<title>Re: Simplify Page Transitions in Windows Phone 7 Silverlight Applications</title>
		<description>
			<![CDATA[
<p>Jeff, you were correct, Peter Torr does have a video covering this. For future reference, it is located here (<a href="http://live.visitmix.com/MIX10/Sessions/CL17">http://live.visitmix.com/MIX10/Sessions/CL17</a>) at the 10:45 mark. Thanks again!</p>
<p>posted by MikeKnoop</p>]]>
		</description>
		<link>http://channel9.msdn.com/Blogs/SlickThought/Simplify-Page-Transitions-in-Windows-Phone-7-Silverlight-Applications#c634104966400000000</link>
		<pubDate>Wed, 26 May 2010 18:50:40 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Blogs/SlickThought/Simplify-Page-Transitions-in-Windows-Phone-7-Silverlight-Applications#c634104966400000000</guid>
		<dc:creator>MikeKnoop</dc:creator>
	</item>
	<item>
		<title>Re: Simplify Page Transitions in Windows Phone 7 Silverlight Applications</title>
		<description>
			<![CDATA[
<p>Jeff, one more question concerning TCC, now that I have gotten the AprilCTP workaround&nbsp;implemented&nbsp;and functioning properly within my test application (to do normal page to page transitions). I noticed it works perfectly in portrait orientation. However,
 when I switch the emulator to landscape and navigate to a different page, the current page is very briefly flashed onto the screen in portrait mode and then the correct animation takes place. This behavior is also noticeable in the demo you posted (to reproduce,
 note that I had to add landscape support to the Favorites.xaml page).</p>
<p>&nbsp;</p>
<p>My guess is this is an artifact of how the TCC actually creates the Page transitions. As it was designed for desktop Silverlight implementations, it did not have to worry about portrait vs. landscape. Of course it could just be an emulator screen buffer
 issue. Do you have any further thoughts on this? I would feel very hesitant shipping an app if the emulator is a true reflection of how an application with TCC would appear on a device. Thanks!</p>
<p>posted by MikeKnoop</p>]]>
		</description>
		<link>http://channel9.msdn.com/Blogs/SlickThought/Simplify-Page-Transitions-in-Windows-Phone-7-Silverlight-Applications#c634109613570000000</link>
		<pubDate>Tue, 01 Jun 2010 03:55:57 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Blogs/SlickThought/Simplify-Page-Transitions-in-Windows-Phone-7-Silverlight-Applications#c634109613570000000</guid>
		<dc:creator>MikeKnoop</dc:creator>
	</item>
	<item>
		<title>Re: Simplify Page Transitions in Windows Phone 7 Silverlight Applications</title>
		<description>
			<![CDATA[
<p>Interesting. I hadnt really noticed it because I was always using the back button to navigate between pages when I was in landscape mode.&nbsp; Problem when you have a demo app that has TWO WHOLE pages. <img src='http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-5.gif' alt='Wink' />&nbsp; I'm not sure what is going on.&nbsp; It appears to have
 something to do with sliding content into the various content controls that make up the TCC and the phone having to figure out that the new content should be in landscape rather than portait.&nbsp; I would lean toward this being a bug in the phone but I have spent
 about 5 minutes looking at it.&nbsp; I will try and dig deeper into it tomorrow.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>UPDATE: Ok, this happens on pages with our without the TCC.&nbsp; I have sent an email to the dev team to see if this is by design, emulator issue, or bug.</p>
<p>posted by SlickThought</p>]]>
		</description>
		<link>http://channel9.msdn.com/Blogs/SlickThought/Simplify-Page-Transitions-in-Windows-Phone-7-Silverlight-Applications#c634110219870000000</link>
		<pubDate>Tue, 01 Jun 2010 20:46:27 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Blogs/SlickThought/Simplify-Page-Transitions-in-Windows-Phone-7-Silverlight-Applications#c634110219870000000</guid>
		<dc:creator>SlickThought</dc:creator>
	</item>
	<item>
		<title>Re: Simplify Page Transitions in Windows Phone 7 Silverlight Applications</title>
		<description>
			<![CDATA[
<p>Confirmed that the flicker is a known issue and entered as a bug.</p>
<p>posted by SlickThought</p>]]>
		</description>
		<link>http://channel9.msdn.com/Blogs/SlickThought/Simplify-Page-Transitions-in-Windows-Phone-7-Silverlight-Applications#c634111740550000000</link>
		<pubDate>Thu, 03 Jun 2010 15:00:55 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Blogs/SlickThought/Simplify-Page-Transitions-in-Windows-Phone-7-Silverlight-Applications#c634111740550000000</guid>
		<dc:creator>SlickThought</dc:creator>
	</item>
	<item>
		<title>Re: Simplify Page Transitions in Windows Phone 7 Silverlight Applications</title>
		<description>
			<![CDATA[
<p>Hi,</p>
<p>&nbsp;</p>
<p>have you had the time to port this all over to the current Beta SDK? There were so many changes that this would help alot <img src='http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-1.gif' alt='Smiley' /></p>
<p>posted by Shalan</p>]]>
		</description>
		<link>http://channel9.msdn.com/Blogs/SlickThought/Simplify-Page-Transitions-in-Windows-Phone-7-Silverlight-Applications#c634162433220000000</link>
		<pubDate>Sun, 01 Aug 2010 07:08:42 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Blogs/SlickThought/Simplify-Page-Transitions-in-Windows-Phone-7-Silverlight-Applications#c634162433220000000</guid>
		<dc:creator>Shalan</dc:creator>
	</item>
	<item>
		<title>Re: Simplify Page Transitions in Windows Phone 7 Silverlight Applications</title>
		<description>
			<![CDATA[
<p>Does it work in the Beta? I followed the video through with the beta, and I can't get it to work at all.</p>
<p>posted by kettch</p>]]>
		</description>
		<link>http://channel9.msdn.com/Blogs/SlickThought/Simplify-Page-Transitions-in-Windows-Phone-7-Silverlight-Applications#c634176714000000000</link>
		<pubDate>Tue, 17 Aug 2010 19:50:00 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Blogs/SlickThought/Simplify-Page-Transitions-in-Windows-Phone-7-Silverlight-Applications#c634176714000000000</guid>
		<dc:creator>kettch</dc:creator>
	</item>
	<item>
		<title>Re: Simplify Page Transitions in Windows Phone 7 Silverlight Applications</title>
		<description>
			<![CDATA[
<p>For those interested I spent 10 minutes converting it over - not much to change really. Anyway I've updated the project and you can find it on my bog:</p>
<p>&nbsp;</p>
<p><a href="http://www.dotnetprofessional.com/blog/post/2010/08/17/Custom-per-page-page-transitions-for-Windows-Phone-7-updated-to-Beta.aspx">http://www.dotnetprofessional.com/blog/post/2010/08/17/Custom-per-page-page-transitions-for-Windows-Phone-7-updated-to-Beta.aspx</a></p>
<p>&nbsp;</p>
<p>Hope this helps out...</p>
<p>posted by dotNetProfessional</p>]]>
		</description>
		<link>http://channel9.msdn.com/Blogs/SlickThought/Simplify-Page-Transitions-in-Windows-Phone-7-Silverlight-Applications#c634177124070000000</link>
		<pubDate>Wed, 18 Aug 2010 07:13:27 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Blogs/SlickThought/Simplify-Page-Transitions-in-Windows-Phone-7-Silverlight-Applications#c634177124070000000</guid>
		<dc:creator>dotNetProfessional</dc:creator>
	</item>
	<item>
		<title>Re: Simplify Page Transitions in Windows Phone 7 Silverlight Applications</title>
		<description>
			<![CDATA[
<p>Hi <a id="ctl00_MainPlaceHolder_EntryList_ctl02_EntryTemplate_UsernameLink" class="shrunk" href="http://channel9.msdn.com/Niners/dotNetProfessional/">
<span id="ctl00_MainPlaceHolder_EntryList_ctl02_EntryTemplate_UsernameLabel">dotNetProfessional</span></a>, the link you have posted does not work, could you please give the good link for your zip file.</p>
<p>Thanks a lot!</p>
<p>posted by Tigerpower</p>]]>
		</description>
		<link>http://channel9.msdn.com/Blogs/SlickThought/Simplify-Page-Transitions-in-Windows-Phone-7-Silverlight-Applications#c634178263960000000</link>
		<pubDate>Thu, 19 Aug 2010 14:53:16 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Blogs/SlickThought/Simplify-Page-Transitions-in-Windows-Phone-7-Silverlight-Applications#c634178263960000000</guid>
		<dc:creator>Tigerpower</dc:creator>
	</item>
	<item>
		<title>Re: Simplify Page Transitions in Windows Phone 7 Silverlight Applications</title>
		<description>
			<![CDATA[
<p>Sorry about that! Seems I forgot to add the http bit so the Url became relative. I've just fixed it so hopefully it will work now <img src='http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-1.gif' alt='Smiley' /></p>
<p>posted by dotNetProfessional</p>]]>
		</description>
		<link>http://channel9.msdn.com/Blogs/SlickThought/Simplify-Page-Transitions-in-Windows-Phone-7-Silverlight-Applications#c634181321030000000</link>
		<pubDate>Mon, 23 Aug 2010 03:48:23 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Blogs/SlickThought/Simplify-Page-Transitions-in-Windows-Phone-7-Silverlight-Applications#c634181321030000000</guid>
		<dc:creator>dotNetProfessional</dc:creator>
	</item>
	<item>
		<title>Re: Simplify Page Transitions in Windows Phone 7 Silverlight Applications</title>
		<description>
			<![CDATA[
<p>Hey Jeff,</p>
<p>Using the simple model you first describe (for a simple 2-page application) I was able to create a nice trasition from MainPage to Page 2. However, intercepting the back button in order to implement the transition in reverse has an unacceptable side-effect.&nbsp;The&nbsp;PhoneApplicationPage_BackKeyPress
 is used to intercept the navigation and allow the transition; however, the stack comes into play and we're caught in an endless loop between the MainPage and Page 2.
</p>
<p>Is there any way to deactivate the application from code? Intercepting the back button on the MainPage and deactivating thte app, is in effect returning to the normal action that would result from the back button being pressed on the MainPage?</p>
<p>Alternatively, your second method looks appealing but the Silverlight 3 Toolkit is proving difficult to locate now that Silverlight 4 and the new Silverlight for WP7 are released. Can you provide a link to the older Silverlight 5 Toolkit you used in this
 video?</p>
<p>Thanks,</p>
<p>Greg</p>
<p>posted by gahayden</p>]]>
		</description>
		<link>http://channel9.msdn.com/Blogs/SlickThought/Simplify-Page-Transitions-in-Windows-Phone-7-Silverlight-Applications#c634203866060000000</link>
		<pubDate>Sat, 18 Sep 2010 06:03:26 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Blogs/SlickThought/Simplify-Page-Transitions-in-Windows-Phone-7-Silverlight-Applications#c634203866060000000</guid>
		<dc:creator>gahayden</dc:creator>
	</item>
	<item>
		<title>Re: Simplify Page Transitions in Windows Phone 7 Silverlight Applications</title>
		<description>
			<![CDATA[ <p>Here's how to do this with the latest Silverlight toolkit (November 2010)&nbsp;<a href="http://rhizohm.net/irhetoric/post/2010/11/09/Page-Transition-Animations-and-Windows-Phone-7.aspx">http://rhizohm.net/irhetoric/post/2010/11/09/Page-Transition-Animations-and-Windows-Phone-7.aspx</a>&nbsp;</p><p>posted by karstenj</p>]]>
		</description>
		<link>http://channel9.msdn.com/Blogs/SlickThought/Simplify-Page-Transitions-in-Windows-Phone-7-Silverlight-Applications#c634249390570000000</link>
		<pubDate>Tue, 09 Nov 2010 22:37:37 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Blogs/SlickThought/Simplify-Page-Transitions-in-Windows-Phone-7-Silverlight-Applications#c634249390570000000</guid>
		<dc:creator>karstenj</dc:creator>
	</item>
</channel>
</rss>