<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Everything Silverlight &#187; silverlight</title>
	<atom:link href="http://www.michaelsnow.com/tag/silverlight/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.michaelsnow.com</link>
	<description></description>
	<lastBuildDate>Thu, 28 Apr 2011 21:43:31 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Selecting an Item in a ComboBox after Adding Items</title>
		<link>http://www.michaelsnow.com/2011/01/03/selecting-an-item-in-a-combobox-after-adding-items/</link>
		<comments>http://www.michaelsnow.com/2011/01/03/selecting-an-item-in-a-combobox-after-adding-items/#comments</comments>
		<pubDate>Mon, 03 Jan 2011 19:48:13 +0000</pubDate>
		<dc:creator>Snowman</dc:creator>
				<category><![CDATA[combobox]]></category>
		<category><![CDATA[controls]]></category>
		<category><![CDATA[silverlight]]></category>

		<guid isPermaLink="false">http://www.michaelsnow.com/2011/01/03/selecting-an-item-in-a-combobox-after-adding-items/</guid>
		<description><![CDATA[When adding items to a Combobox dynamically you might notice that setting an items IsSelected = true directly aftewards fails to work. For example, this fails to select the first item in the ComboBox: ComboBoxItem cbi; &#160; foreach (string category in Categories) { cbi = new ComboBoxItem(); cbi.Content = category; &#160;&#160; CategoryCB.Items.Add(cbi); } &#160; if [...]]]></description>
			<content:encoded><![CDATA[<p>When adding items to a Combobox dynamically you might notice that setting an items IsSelected = true directly aftewards <u>fails</u> to work.</p>
<p>For example, this fails to select the first item in the ComboBox:</p>
<div class="csharpcode">
<pre class="alt">ComboBoxItem cbi;</pre>
<pre>&#160;</pre>
<pre class="alt"><span class="kwrd">foreach</span> (<span class="kwrd">string</span> category <span class="kwrd">in</span> Categories)</pre>
<pre>{</pre>
<pre class="alt">    cbi = <span class="kwrd">new</span> ComboBoxItem();</pre>
<pre>    cbi.Content = category;</pre>
<pre class="alt">&#160;&#160; CategoryCB.Items.Add(cbi);</pre>
<pre>}</pre>
<pre class="alt">&#160;</pre>
<pre><span class="kwrd">if</span> (CategoryCB.Items.Count &gt; 0)</pre>
<pre class="alt">{</pre>
<pre>    cbi = (ComboBoxItem)CategoryCB.Items[0];</pre>
<pre class="alt">    cbi.IsSelected = <span class="kwrd">true</span>;</pre>
<pre>}</pre>
</div>
<p>
<style type="text/css">
.csharpcode, .csharpcode pre
{
	font-size: small;
	color: black;
	font-family: consolas, "Courier New", courier, monospace;
	background-color: #ffffff;
	/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: #006080; }
.csharpcode .op { color: #0000c0; }
.csharpcode .preproc { color: #cc6633; }
.csharpcode .asp { background-color: #ffff00; }
.csharpcode .html { color: #800000; }
.csharpcode .attr { color: #ff0000; }
.csharpcode .alt 
{
	background-color: #f4f4f4;
	width: 100%;
	margin: 0em;
}
.csharpcode .lnum { color: #606060; }</style>
</p>
<p>The way to do this is via the SelectedIndex property off your ComboBox control:</p>
<div class="csharpcode">
<pre class="alt"><span class="kwrd">if</span> (CategoryCB.Items.Count &gt; 0)</pre>
<pre>{</pre>
<pre class="alt">    CategoryCB.SelectedIndex = 0;</pre>
<pre>}</pre>
</div>
<p>
<style type="text/css">
.csharpcode, .csharpcode pre
{
	font-size: small;
	color: black;
	font-family: consolas, "Courier New", courier, monospace;
	background-color: #ffffff;
	/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: #006080; }
.csharpcode .op { color: #0000c0; }
.csharpcode .preproc { color: #cc6633; }
.csharpcode .asp { background-color: #ffff00; }
.csharpcode .html { color: #800000; }
.csharpcode .attr { color: #ff0000; }
.csharpcode .alt 
{
	background-color: #f4f4f4;
	width: 100%;
	margin: 0em;
}
.csharpcode .lnum { color: #606060; }</style>
</p>
<p>Thanks,<br />
  <br />&#8211;Mike</p>
]]></content:encoded>
			<wfw:commentRss>http://www.michaelsnow.com/2011/01/03/selecting-an-item-in-a-combobox-after-adding-items/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Detecting Users Win7 Mobile Theme Color</title>
		<link>http://www.michaelsnow.com/2011/01/03/detecting-users-win7-mobile-theme-color/</link>
		<comments>http://www.michaelsnow.com/2011/01/03/detecting-users-win7-mobile-theme-color/#comments</comments>
		<pubDate>Mon, 03 Jan 2011 16:28:44 +0000</pubDate>
		<dc:creator>Snowman</dc:creator>
				<category><![CDATA[silverlight]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[win7]]></category>
		<category><![CDATA[windows mobile 7]]></category>

		<guid isPermaLink="false">http://www.michaelsnow.com/2011/01/03/detecting-users-win7-mobile-theme-color/</guid>
		<description><![CDATA[If you want your Win7 mobile application to mimic the theme/system colors your users phone is using you can do so through the the use of the Theme Resources. For example, the color of each of the tiles in your phone is called the “Accent” color. To obtain this color simply call: SolidColorBrush brush=Application.Current.Resources[&#34;PhoneAccentBrush&#34;] as [...]]]></description>
			<content:encoded><![CDATA[<p>If you want your Win7 mobile application to mimic the theme/system colors your users phone is using you can do so through the the use of the Theme Resources.</p>
<p>For example, the color of each of the tiles in your phone is called the “Accent” color. To obtain this color simply call:</p>
<pre class="csharpcode">SolidColorBrush brush=Application.Current.Resources[<span class="str">&quot;PhoneAccentBrush&quot;</span>] <span class="kwrd">as</span> SolidColorBrush;</pre>
<style type="text/css">
<p>.csharpcode, .csharpcode pre
{
	font-size: small;
	color: black;
	font-family: consolas, "Courier New", courier, monospace;
	background-color: #ffffff;
	/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: #006080; }
.csharpcode .op { color: #0000c0; }
.csharpcode .preproc { color: #cc6633; }
.csharpcode .asp { background-color: #ffff00; }
.csharpcode .html { color: #800000; }
.csharpcode .attr { color: #ff0000; }
.csharpcode .alt 
{
	background-color: #f4f4f4;
	width: 100%;
	margin: 0em;
}
.csharpcode .lnum { color: #606060; }</style>
<p>Background and Foreground colors:</p>
<div class="csharpcode">
<pre class="alt">background = Application.Current.Resources[<span class="str">&quot;PhoneBackgroundBrush&quot;</span>] <span class="kwrd">as</span> SolidColorBrush;</pre>
<pre>foreground = Application.Current.Resources[<span class="str">&quot;PhoneForegroundBrush&quot;</span>] <span class="kwrd">as</span> SolidColorBrush;</pre>
</div>
<p>
  <br />For more details on the other colors available see: <a title="http://msdn.microsoft.com/en-us/library/ff769552(VS.92).aspx" href="http://msdn.microsoft.com/en-us/library/ff769552(VS.92).aspx">http://msdn.microsoft.com/en-us/library/ff769552(VS.92).aspx</a></p>
<p>Thanks,<br />
  <br />&#8211;Mike</p>
]]></content:encoded>
			<wfw:commentRss>http://www.michaelsnow.com/2011/01/03/detecting-users-win7-mobile-theme-color/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Funny Sounds, Radio Streams &amp; Japanese &#8211; Win7 Mobile Apps</title>
		<link>http://www.michaelsnow.com/2010/12/26/funny-sounds-radio-streams-japanese-win7-mobile-apps/</link>
		<comments>http://www.michaelsnow.com/2010/12/26/funny-sounds-radio-streams-japanese-win7-mobile-apps/#comments</comments>
		<pubDate>Sun, 26 Dec 2010 16:48:07 +0000</pubDate>
		<dc:creator>Snowman</dc:creator>
				<category><![CDATA[silverlight]]></category>
		<category><![CDATA[win7]]></category>
		<category><![CDATA[windows mobile 7]]></category>
		<category><![CDATA[mobile]]></category>

		<guid isPermaLink="false">http://www.michaelsnow.com/2010/12/26/funny-sounds-radio-streams-japanese-win7-mobile-apps/</guid>
		<description><![CDATA[Well, I am having a lot of fun on my vacation creating applications in Silverlight for the Win7 mobile phone. My latest published application allows you to play a variety of sounds including some funny, obnoxious ones that will find some good laughs at a party. The application is called “Funny Sounds” and can be [...]]]></description>
			<content:encoded><![CDATA[<p>Well, I am having a lot of fun on my vacation creating applications in Silverlight for the Win7 mobile phone.</p>
<p>My latest published application allows you to play a variety of sounds including some funny, obnoxious ones that will find some good laughs at a party.</p>
<p>The application is called “Funny Sounds” and can be downloaded via the marketplace. Direct Zune link: <a href="http://social.zune.net/redirect?type=phoneApp&amp;id=10fb5adc-390b-e011-9264-00237de2db9e">http://social.zune.net/redirect?type=phoneApp&amp;id=10fb5adc-390b-e011-9264-00237de2db9e</a></p>
<p>Let me know if there are any sounds you would like to have in this app to make your friends laugh!</p>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:66721397-FF69-4ca6-AEC4-17E6B3208830:d66910d3-8ecd-4b36-8d9f-962da6ba9d6e" class="wlWriterEditableSmartContent"><a style="border:0px" href="http://cid-8c8902c550c11957.skydrive.live.com/redir.aspx?page=browse&amp;resid=8C8902C550C11957!222&amp;type=5"><img style="border:0px" alt="View Funny Sounds" src="http://www.michaelsnow.com/wp-content/uploads/2010/12/InlineRepresentation2f6558ba7d1c4210bc96f672e463b115.jpg" /></a>
<div style="width:565px;text-align:right;" ><a href="http://cid-8c8902c550c11957.skydrive.live.com/redir.aspx?page=browse&amp;resid=8C8902C550C11957!222&amp;type=5">View Full Album</a></div>
</div>
<p>I have two other applications I am about to publish soon next week.</p>
<p>The first is a program that allows you to listen to radio stations that support SHOUTCast streams. This application allows you to pick a genre and a sub-genre to help you find the radio station that is right for you. Screenshots:</p>
<p><a href="http://www.michaelsnow.com/wp-content/uploads/2010/12/image8.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://www.michaelsnow.com/wp-content/uploads/2010/12/image_thumb8.png" width="303" height="484" /></a> <a href="http://www.michaelsnow.com/wp-content/uploads/2010/12/image9.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://www.michaelsnow.com/wp-content/uploads/2010/12/image_thumb9.png" width="293" height="484" /></a> </p>
<p>Finally, if you are interested in learning Japanese you will love my next application. Titled “PeraPera” (which means “fluent” in Japanese), this application allows you to study Kanji, Hiragana, Katakana as well as vocabulary. Before I got into Computer Science, Japanese was my passion and I spent over 5 years in Japan studying Japanese. I have always wanted to make a program like this and the Win7 Mobile Platform was the perfect place. Couple sneak preview screenshots below:</p>
<p><a href="http://www.michaelsnow.com/wp-content/uploads/2010/12/image10.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://www.michaelsnow.com/wp-content/uploads/2010/12/image_thumb10.png" width="306" height="484" /></a> <a href="http://www.michaelsnow.com/wp-content/uploads/2010/12/image11.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://www.michaelsnow.com/wp-content/uploads/2010/12/image_thumb11.png" width="292" height="484" /></a> </p>
</p>
<p>Thanks,   <br />&#8211;Mike</p>
]]></content:encoded>
			<wfw:commentRss>http://www.michaelsnow.com/2010/12/26/funny-sounds-radio-streams-japanese-win7-mobile-apps/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Playing sound effects on Windows Phone 7</title>
		<link>http://www.michaelsnow.com/2010/12/17/playing-sound-effects-on-windows-phone-7/</link>
		<comments>http://www.michaelsnow.com/2010/12/17/playing-sound-effects-on-windows-phone-7/#comments</comments>
		<pubDate>Fri, 17 Dec 2010 20:10:57 +0000</pubDate>
		<dc:creator>Snowman</dc:creator>
				<category><![CDATA[mobile]]></category>
		<category><![CDATA[silverlight]]></category>
		<category><![CDATA[sound]]></category>
		<category><![CDATA[win7]]></category>
		<category><![CDATA[windows mobile 7]]></category>

		<guid isPermaLink="false">http://www.michaelsnow.com/2010/12/17/playing-sound-effects-on-windows-phone-7/</guid>
		<description><![CDATA[To play sounds on the Windows Phone 7 you can make use of the SoundEffect library that comes with XNA even if you are building an application in Silverlight. Start by adding a reference to Microsoft.Xna.Framework.dll. Next, add the following using statements to your file: using Microsoft.Xna.Framework.Audio; using Microsoft.Xna.Framework; .csharpcode, .csharpcode pre { font-size: small; [...]]]></description>
			<content:encoded><![CDATA[<p>To play sounds on the Windows Phone 7 you can make use of the SoundEffect library that comes with XNA even if you are building an application in Silverlight.</p>
<p>Start by adding a reference to Microsoft.Xna.Framework.dll.</p>
<p>Next, add the following using statements to your file:</p>
<div class="csharpcode">
<pre class="alt"><span class="kwrd">using</span> Microsoft.Xna.Framework.Audio;</pre>
<pre><span class="kwrd">using</span> Microsoft.Xna.Framework;</pre>
</div>
<style type="text/css">
.csharpcode, .csharpcode pre
{
	font-size: small;
	color: black;
	font-family: consolas, "Courier New", courier, monospace;
	background-color: #ffffff;
	/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: #006080; }
.csharpcode .op { color: #0000c0; }
.csharpcode .preproc { color: #cc6633; }
.csharpcode .asp { background-color: #ffff00; }
.csharpcode .html { color: #800000; }
.csharpcode .attr { color: #ff0000; }
.csharpcode .alt 
{
	background-color: #f4f4f4;
	width: 100%;
	margin: 0em;
}
.csharpcode .lnum { color: #606060; }</style>
<p>
  <br />This class supports using WAV files. If you have an MP3 file, you can convert it to a WAV using a conversion tool (there are tons of free tools on the Internet). </p>
<p>Next, add your wav file to your project. Finally, open the stream to the WAV file using TitleContainer.OpenStream() and create a SoundEffect from that stream. In the example below, I am opening a wave file called crickets.wav that is located in my folder called sounds.</p>
<div class="csharpcode">
<pre class="alt">Stream stream = TitleContainer.OpenStream(<span class="str">&quot;sounds/crickets.wav&quot;</span>);</pre>
<pre>SoundEffect effect = SoundEffect.FromStream(stream);</pre>
<pre class="alt">FrameworkDispatcher.Update();</pre>
<pre>effect.Play();</pre>
</div>
<style type="text/css">
.csharpcode, .csharpcode pre
{
	font-size: small;
	color: black;
	font-family: consolas, "Courier New", courier, monospace;
	background-color: #ffffff;
	/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: #006080; }
.csharpcode .op { color: #0000c0; }
.csharpcode .preproc { color: #cc6633; }
.csharpcode .asp { background-color: #ffff00; }
.csharpcode .html { color: #800000; }
.csharpcode .attr { color: #ff0000; }
.csharpcode .alt 
{
	background-color: #f4f4f4;
	width: 100%;
	margin: 0em;
}
.csharpcode .lnum { color: #606060; }</style>
<p>
  <br />In general wave files are much larger than compressed MP3 files. On the phone, you can play one Mp3 at a time using the MediaElement object. When creating your MediaElement, make certain you add it to the Silverlight tree if it’s not statically declared otherwise it will not load.</p>
<p>Also, when you deploy the app to your actual phone device through VS 2010 and Zune make certain you unplug or close Zune first before attempting to play sound otherwise they will fail to load. You can play sounds without this problem if you run your app in the emulator.</p>
<p>The following code gives and example of playing sound through the MediaElement:</p>
<p>MainPage.xaml:</p>
<pre class="csharpcode">&lt;MediaElement x:Name=<span class="str">&quot;MainME&quot;</span> AutoPlay=<span class="str">&quot;False&quot;</span> MediaOpened=<span class="str">&quot;MainME_MediaOpened&quot;</span> MediaFailed=<span class="str">&quot;MainME_MediaFailed&quot;</span>&gt;&lt;/MediaElement&gt;</pre>
<style type="text/css">
.csharpcode, .csharpcode pre
{
	font-size: small;
	color: black;
	font-family: consolas, "Courier New", courier, monospace;
	background-color: #ffffff;
	/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: #006080; }
.csharpcode .op { color: #0000c0; }
.csharpcode .preproc { color: #cc6633; }
.csharpcode .asp { background-color: #ffff00; }
.csharpcode .html { color: #800000; }
.csharpcode .attr { color: #ff0000; }
.csharpcode .alt 
{
	background-color: #f4f4f4;
	width: 100%;
	margin: 0em;
}
.csharpcode .lnum { color: #606060; }</style>
<p>MainPage.xaml.cs:</p>
<div class="csharpcode">
<pre class="alt"><span class="kwrd">private</span> <span class="kwrd">void</span> SoundBtn_Click(<span class="kwrd">object</span> sender, RoutedEventArgs e)</pre>
<pre>{</pre>
<pre class="alt">    MainME.Source = <span class="kwrd">new</span> Uri(<span class="str">&quot;sounds/mySound.mp3&quot;</span>, UriKind.Relative);</pre>
<pre>    MainME.Position = <span class="kwrd">new</span> TimeSpan(0);</pre>
<pre class="alt">}</pre>
<pre>&#160;</pre>
<pre class="alt"><span class="kwrd">private</span> <span class="kwrd">void</span> MainME_MediaOpened(<span class="kwrd">object</span> sender, RoutedEventArgs e)</pre>
<pre>{</pre>
<pre class="alt">    MainME.Play();</pre>
<pre>}</pre>
</div>
<style type="text/css">
.csharpcode, .csharpcode pre
{
	font-size: small;
	color: black;
	font-family: consolas, "Courier New", courier, monospace;
	background-color: #ffffff;
	/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: #006080; }
.csharpcode .op { color: #0000c0; }
.csharpcode .preproc { color: #cc6633; }
.csharpcode .asp { background-color: #ffff00; }
.csharpcode .html { color: #800000; }
.csharpcode .attr { color: #ff0000; }
.csharpcode .alt 
{
	background-color: #f4f4f4;
	width: 100%;
	margin: 0em;
}
.csharpcode .lnum { color: #606060; }</style>
<p>
  <br />Thanks,</p>
<p>&#8211;Mike</p>
]]></content:encoded>
			<wfw:commentRss>http://www.michaelsnow.com/2010/12/17/playing-sound-effects-on-windows-phone-7/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Forward Navigation on the Windows Phone</title>
		<link>http://www.michaelsnow.com/2010/12/16/forward-navigation-on-the-windows-phone/</link>
		<comments>http://www.michaelsnow.com/2010/12/16/forward-navigation-on-the-windows-phone/#comments</comments>
		<pubDate>Thu, 16 Dec 2010 20:31:34 +0000</pubDate>
		<dc:creator>Snowman</dc:creator>
				<category><![CDATA[forward]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[silverlight]]></category>
		<category><![CDATA[windows mobile 7]]></category>
		<category><![CDATA[win7]]></category>

		<guid isPermaLink="false">http://www.michaelsnow.com/2010/12/16/forward-navigation-on-the-windows-phone/</guid>
		<description><![CDATA[Just a quick note to state that currently there is no forward navigation stack on the windows 7 mobile phone. Therefore, if you call this.NavigationService.CanGoForward you will notice this values always returns false. This is currently By Design. Navigating back works as expected: private void BackBtn_Click(object sender, EventArgs e) { if (this.NavigationService.CanGoBack) this.NavigationService.GoBack(); } .csharpcode, [...]]]></description>
			<content:encoded><![CDATA[<p>Just a quick note to state that currently there is no forward navigation stack on the windows 7 mobile phone. Therefore, if you call this.NavigationService.CanGoForward you will notice this values <u>always</u> returns false. This is currently By Design.</p>
<p>Navigating back works as expected:</p>
<div class="csharpcode">
<pre class="alt"><span class="kwrd">private</span> <span class="kwrd">void</span> BackBtn_Click(<span class="kwrd">object</span> sender, EventArgs e)</pre>
<pre>{</pre>
<pre class="alt">    <span class="kwrd">if</span> (<span class="kwrd">this</span>.NavigationService.CanGoBack)</pre>
<pre>        <span class="kwrd">this</span>.NavigationService.GoBack();</pre>
<pre class="alt">}</pre>
</div>
<style type="text/css">
.csharpcode, .csharpcode pre
{
	font-size: small;
	color: black;
	font-family: consolas, "Courier New", courier, monospace;
	background-color: #ffffff;
	/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: #006080; }
.csharpcode .op { color: #0000c0; }
.csharpcode .preproc { color: #cc6633; }
.csharpcode .asp { background-color: #ffff00; }
.csharpcode .html { color: #800000; }
.csharpcode .attr { color: #ff0000; }
.csharpcode .alt 
{
	background-color: #f4f4f4;
	width: 100%;
	margin: 0em;
}
.csharpcode .lnum { color: #606060; }</style>
<p>
  <br />Thanks,</p>
<p>&#8211;Mike</p>
]]></content:encoded>
			<wfw:commentRss>http://www.michaelsnow.com/2010/12/16/forward-navigation-on-the-windows-phone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

