<?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>JAPF &#187; Windows Phone</title>
	<atom:link href="http://www.japf.fr/category/windows-phone/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.japf.fr</link>
	<description>Jeremy Alles Presentation Foundation: WPF, .Net and modern software development</description>
	<lastBuildDate>Thu, 12 Aug 2010 08:18:03 +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>[WP7] Sound effect in a Silverlight Windows Phone 7 application</title>
		<link>http://www.japf.fr/2010/08/sound-effect-in-wp7-sl-application/</link>
		<comments>http://www.japf.fr/2010/08/sound-effect-in-wp7-sl-application/#comments</comments>
		<pubDate>Thu, 12 Aug 2010 08:18:03 +0000</pubDate>
		<dc:creator>Jeremy</dc:creator>
				<category><![CDATA[Windows Phone]]></category>
		<category><![CDATA[wp7]]></category>

		<guid isPermaLink="false">http://www.japf.fr/?p=637</guid>
		<description><![CDATA[A coworker and I are currently working on a simple Silverlight game for the Windows Phone 7 platform. In order to give some feedback to our end-user, we decided to add sound effects. Here is a very short post about how we did that. The first thing is to reference the Microsoft.Xna.Framework assembly in your [...]]]></description>
			<content:encoded><![CDATA[<p>A coworker and I are currently working on a simple Silverlight game for the Windows Phone 7 platform. In order to give some feedback to our end-user, we decided to add sound effects. Here is a very short post about how we did that.</p>
<p>The first thing is to reference the <strong>Microsoft.Xna.Framework</strong> assembly in your project. This assembly is needed to access the low-level sound component of XNA right from your Silverlight application. You also need to have your sound effect in a WAVE format file.</p>
<p>Then we created a simple action (from the Blend Behavior toolkit) which is a <em>TargetedTriggerAction</em>:</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p637code3'); return false;">View Code</a> CSHARP</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p6373"><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
</pre></td><td class="code" id="p637code3"><pre class="csharp" style="font-family:monospace;"><span style="color: #0600FF; font-weight: bold;">public</span> <span style="color: #6666cc; font-weight: bold;">class</span> SoundEffectAction <span style="color: #008000;">:</span> TargetedTriggerAction<span style="color: #008000;">&lt;</span>FrameworkElement<span style="color: #008000;">&gt;</span>
<span style="color: #008000;">&#123;</span>
    <span style="color: #0600FF; font-weight: bold;">public</span> <span style="color: #6666cc; font-weight: bold;">string</span> Source
    <span style="color: #008000;">&#123;</span>
        get <span style="color: #008000;">&#123;</span> <span style="color: #0600FF; font-weight: bold;">return</span> <span style="color: #008000;">&#40;</span><span style="color: #6666cc; font-weight: bold;">string</span><span style="color: #008000;">&#41;</span>GetValue<span style="color: #008000;">&#40;</span>SourceProperty<span style="color: #008000;">&#41;</span><span style="color: #008000;">;</span> <span style="color: #008000;">&#125;</span>
        set <span style="color: #008000;">&#123;</span> SetValue<span style="color: #008000;">&#40;</span>SourceProperty, value<span style="color: #008000;">&#41;</span><span style="color: #008000;">;</span> <span style="color: #008000;">&#125;</span>
    <span style="color: #008000;">&#125;</span>
&nbsp;
    <span style="color: #0600FF; font-weight: bold;">public</span> <span style="color: #0600FF; font-weight: bold;">static</span> <span style="color: #0600FF; font-weight: bold;">readonly</span> DependencyProperty SourceProperty <span style="color: #008000;">=</span> DependencyProperty<span style="color: #008000;">.</span><span style="color: #0000FF;">Register</span><span style="color: #008000;">&#40;</span>
        <span style="color: #666666;">&quot;Source&quot;</span>, 
        <span style="color: #008000;">typeof</span><span style="color: #008000;">&#40;</span><span style="color: #6666cc; font-weight: bold;">string</span><span style="color: #008000;">&#41;</span>, 
        <span style="color: #008000;">typeof</span><span style="color: #008000;">&#40;</span>SoundEffectAction<span style="color: #008000;">&#41;</span>, 
        <span style="color: #008000;">new</span> PropertyMetadata<span style="color: #008000;">&#40;</span><span style="color: #6666cc; font-weight: bold;">string</span><span style="color: #008000;">.</span><span style="color: #0000FF;">Empty</span><span style="color: #008000;">&#41;</span><span style="color: #008000;">&#41;</span><span style="color: #008000;">;</span>
&nbsp;
    <span style="color: #0600FF; font-weight: bold;">protected</span> <span style="color: #0600FF; font-weight: bold;">override</span> <span style="color: #6666cc; font-weight: bold;">void</span> Invoke<span style="color: #008000;">&#40;</span><span style="color: #6666cc; font-weight: bold;">object</span> parameter<span style="color: #008000;">&#41;</span>
    <span style="color: #008000;">&#123;</span>
        <span style="color: #0600FF; font-weight: bold;">if</span><span style="color: #008000;">&#40;</span><span style="color: #008000;">!</span><span style="color: #6666cc; font-weight: bold;">string</span><span style="color: #008000;">.</span><span style="color: #0000FF;">IsNullOrEmpty</span><span style="color: #008000;">&#40;</span><span style="color: #0600FF; font-weight: bold;">this</span><span style="color: #008000;">.</span><span style="color: #0000FF;">Source</span><span style="color: #008000;">&#41;</span>
        <span style="color: #008000;">&#123;</span>
            var stream <span style="color: #008000;">=</span> TitleContainer<span style="color: #008000;">.</span><span style="color: #0000FF;">OpenStream</span><span style="color: #008000;">&#40;</span><span style="color: #0600FF; font-weight: bold;">this</span><span style="color: #008000;">.</span><span style="color: #0000FF;">Source</span><span style="color: #008000;">&#41;</span><span style="color: #008000;">;</span>
            <span style="color: #0600FF; font-weight: bold;">if</span> <span style="color: #008000;">&#40;</span>stream <span style="color: #008000;">!=</span> <span style="color: #0600FF; font-weight: bold;">null</span><span style="color: #008000;">&#41;</span>
            <span style="color: #008000;">&#123;</span>
                var effect <span style="color: #008000;">=</span> SoundEffect<span style="color: #008000;">.</span><span style="color: #0000FF;">FromStream</span><span style="color: #008000;">&#40;</span>stream<span style="color: #008000;">&#41;</span><span style="color: #008000;">;</span>
                FrameworkDispatcher<span style="color: #008000;">.</span><span style="color: #0000FF;">Update</span><span style="color: #008000;">&#40;</span><span style="color: #008000;">&#41;</span><span style="color: #008000;">;</span>
                effect<span style="color: #008000;">.</span><span style="color: #0000FF;">Play</span><span style="color: #008000;">&#40;</span><span style="color: #008000;">&#41;</span><span style="color: #008000;">;</span>
            <span style="color: #008000;">&#125;</span>
        <span style="color: #008000;">&#125;</span>
    <span style="color: #008000;">&#125;</span>
<span style="color: #008000;">&#125;</span></pre></td></tr></table></div>

<p>Using this action, we&#8217;re able to wire sound effect right in Blend which produces the following XAML code:</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p637code4'); return false;">View Code</a> XML</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p6374"><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
</pre></td><td class="code" id="p637code4"><pre class="xml" style="font-family:monospace;"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;Grid</span> <span style="color: #000066;">Margin</span>=<span style="color: #ff0000;">&quot;2&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;i:Interaction.Triggers<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
        <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;i:EventTrigger</span> <span style="color: #000066;">EventName</span>=<span style="color: #ff0000;">&quot;MouseLeftButtonUp&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
            <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;Actions:SoundEffectAction</span> <span style="color: #000066;">Source</span>=<span style="color: #ff0000;">&quot;Resources/Sounds/Click.wav&quot;</span> <span style="color: #000000; font-weight: bold;">/&gt;</span></span>
        <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/i:EventTrigger<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/i:Interaction.Triggers<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #808080; font-style: italic;">&lt;!-- rest of the xaml... --&gt;</span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/Grid<span style="color: #000000; font-weight: bold;">&gt;</span></span></span></pre></td></tr></table></div>

<p>Simple, isn&#8217;t it ?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.japf.fr/2010/08/sound-effect-in-wp7-sl-application/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>MVVM Frameworks Explorer updated</title>
		<link>http://www.japf.fr/2010/07/mvvm-frameworks-explorer-updated/</link>
		<comments>http://www.japf.fr/2010/07/mvvm-frameworks-explorer-updated/#comments</comments>
		<pubDate>Mon, 19 Jul 2010 18:44:25 +0000</pubDate>
		<dc:creator>Jeremy</dc:creator>
				<category><![CDATA[Silverlight]]></category>
		<category><![CDATA[WPF]]></category>
		<category><![CDATA[Windows Phone]]></category>
		<category><![CDATA[frameworks]]></category>
		<category><![CDATA[mvvm]]></category>

		<guid isPermaLink="false">http://www.japf.fr/?p=625</guid>
		<description><![CDATA[Today I&#8217;m releasing a new version of my MVVM Frameworks Explorer application. You can find the updated version here: http://www.japf.fr/silverlight/mvvm/index.html Here is a list of the changes in this new version: application updated to Silverlight 4 support is now detailed for WPF, Silverlight and Windows Phone new frameworks added (MEFedMVVM&#8230;) framework&#8217;s logo added download count [...]]]></description>
			<content:encoded><![CDATA[<p>Today I&#8217;m releasing a new version of my MVVM Frameworks Explorer application. You can find the updated version here: <a href="http://www.japf.fr/silverlight/mvvm/index.html">http://www.japf.fr/silverlight/mvvm/index.html</a></p>
<p><a href="http://www.japf.fr/wp-content/uploads/2009/11/silverlight-mvvm-app.png" rel="lightbox[625]"><img class="alignnone size-full wp-image-370" title="silverlight-mvvm-app" src="http://www.japf.fr/wp-content/uploads/2009/11/silverlight-mvvm-app.png" alt="" width="341" height="177" /></a></p>
<p>Here is a list of the changes in this new version:</p>
<ul>
<li>application updated to Silverlight 4</li>
<li>support is now detailed for WPF, Silverlight and Windows Phone</li>
<li>new frameworks added (MEFedMVVM&#8230;)</li>
<li>framework&#8217;s logo added</li>
<li>download count added (based on the information I found on CodePlex website)</li>
<li>about window</li>
</ul>
<p>As always, feel free to give feedback <img src='http://www.japf.fr/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.japf.fr/2010/07/mvvm-frameworks-explorer-updated/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>[WP7] Beta build of the Windows Phone 7 tools is available</title>
		<link>http://www.japf.fr/2010/07/wp7-eta-build-of-the-windows-phone-7-tools-available/</link>
		<comments>http://www.japf.fr/2010/07/wp7-eta-build-of-the-windows-phone-7-tools-available/#comments</comments>
		<pubDate>Mon, 12 Jul 2010 21:40:30 +0000</pubDate>
		<dc:creator>Jeremy</dc:creator>
				<category><![CDATA[Windows Phone]]></category>
		<category><![CDATA[wp7]]></category>

		<guid isPermaLink="false">http://www.japf.fr/?p=610</guid>
		<description><![CDATA[I guess many Windows Phone 7 developers have been waiting for this news since many weeks. It&#8217;s finally official: the Beta build of the Windows Phone 7 tools is out. If you want to download the new version here is the link. This new version has been released during WPC (Microsoft Worldwide Partner Conference). For [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.japf.fr/wp-content/uploads/2010/07/windowsphone.png" rel="lightbox[610]"><img class="alignnone size-full wp-image-612" title="windowsphone" src="http://www.japf.fr/wp-content/uploads/2010/07/windowsphone.png" alt="" width="289" height="50" /></a></p>
<p>I guess many Windows Phone 7 developers have been waiting for this news since many weeks. It&#8217;s finally official: <strong>the Beta build of the Windows Phone 7 tools is out</strong>. If you want to download the new version <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=c8496c2a-54d9-4b11-9491-a1bfaf32f2e3&amp;displaylang=en">here is the link</a>.</p>
<p>This new version has been released during <a href="http://digitalwpc.com/">WPC</a> (Microsoft Worldwide Partner Conference). For more information, please check-out:</p>
<ul>
<li><a href="http://windowsteamblog.com/windows_phone/b/wpdev/archive/2010/07/12/windows-phone-developer-tools-beta-released.aspx">the post</a> on the Windows Phone Developer Tools blog.</li>
<li><a href="http://blogs.msdn.com/b/jaimer/archive/2010/06/28/migrating-apps-from-windows-phone-ctps-to-the-beta-build.aspx">this post</a> by Jaime Rodriguez about all breaking change between the April CTP Refresh and the Beta build</li>
<li><a href="http://blogs.msdn.com/b/expression/archive/2010/07/12/windows-phone-developer-tools-beta-released.aspx">this post</a> by the Blend team about the new features available in Blend</li>
<li><a href="http://go.microsoft.com/fwlink/?LinkId=194469">the release note</a></li>
</ul>
<p>Here are a summary of the changes in this new version:</p>
<ul>
<li>Despite HW acceleration effects have been removed from the platform (DropShadow and Blur effects are now no-op). This feature might come back later.</li>
<li>Compatibility with Blend 4 RTM</li>
<li>API near final</li>
<li>Various fixes</li>
</ul>
<p>Note that panorama and pivot controls are coming in the next weeks&#8230; Grab you copy now and enjoy Windows Phone 7 development <img src='http://www.japf.fr/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow: hidden;">http://www.microsoft.com/downloads/details.aspx?FamilyID=c8496c2a-54d9-4b11-9491-a1bfaf32f2e3&amp;displaylang=en</div>
]]></content:encoded>
			<wfw:commentRss>http://www.japf.fr/2010/07/wp7-eta-build-of-the-windows-phone-7-tools-available/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[WP7] Windows Phone 7 challenge for french readers !</title>
		<link>http://www.japf.fr/2010/06/wp7-windows-phone-7-challenge-for-french-readers/</link>
		<comments>http://www.japf.fr/2010/06/wp7-windows-phone-7-challenge-for-french-readers/#comments</comments>
		<pubDate>Mon, 14 Jun 2010 13:49:48 +0000</pubDate>
		<dc:creator>Jeremy</dc:creator>
				<category><![CDATA[.Net]]></category>
		<category><![CDATA[Events]]></category>
		<category><![CDATA[Silverlight]]></category>
		<category><![CDATA[Windows Phone]]></category>
		<category><![CDATA[wp7]]></category>

		<guid isPermaLink="false">http://www.japf.fr/?p=565</guid>
		<description><![CDATA[A couple of months ago, the french programming website www.developpez.com organized an event to discover Windows Azure programming (I wrote a blog post about it here). A similar event has just been launched for Windows Phone 7 development at challenge-windowsphone7.developpez.com (tr: &#8220;Let&#8217;s go !&#8221; &#8220;World cup ?&#8221; &#8220;No&#8230; Windows Phone 7 challenge by developpez.com !&#8221;) [...]]]></description>
			<content:encoded><![CDATA[<p>A couple of months ago, the french programming website <a href="http://www.developpez.com">www.developpez.com</a> organized an event to discover Windows Azure programming (I wrote a blog post about it <a href="http://www.japf.fr/2010/01/windows-azure-challenge/">here</a>).</p>
<p>A similar event has just been launched for Windows Phone 7 development at <a href="http://challenge-windowsphone7.developpez.com">challenge-windowsphone7.developpez.com</a></p>
<p><a href="http://www.japf.fr/wp-content/uploads/2010/06/header.png" rel="lightbox[565]"><img class="alignnone size-full wp-image-566" title="header" src="http://www.japf.fr/wp-content/uploads/2010/06/header.png" alt="" width="420" height="115" /></a></p>
<p><em>(tr: &#8220;Let&#8217;s go !&#8221; &#8220;World cup ?&#8221; &#8220;No&#8230; Windows Phone 7 challenge by developpez.com !&#8221;)</em></p>
<p>The challenge is made of 6 steps:</p>
<ol>
<li>Tools : download and install the required tools</li>
<li>Quizz : first basic quizz</li>
<li>Silverlight development</li>
<li>Silverlight and push notifications</li>
<li>XNA</li>
<li>Quizz : advanced quizz</li>
</ol>
<p>Each winner will have the following gifts:</p>
<p><a href="http://www.japf.fr/wp-content/uploads/2010/06/cadeaux-all.png" rel="lightbox[565]"><img class="alignnone size-full wp-image-567" title="cadeaux-all" src="http://www.japf.fr/wp-content/uploads/2010/06/cadeaux-all.png" alt="" width="555" height="111" /></a></p>
<p>This kind of challenge is really helpful to discover a new technology the funny way ! I hope I&#8217;ll get my &#8220;I Love Windows Phone&#8221; tee-shirt to wear it this summer <img src='http://www.japf.fr/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.japf.fr/2010/06/wp7-windows-phone-7-challenge-for-french-readers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[WP7] Using the camera in the emulator</title>
		<link>http://www.japf.fr/2010/05/wp7-using-the-camera-in-the-emulator/</link>
		<comments>http://www.japf.fr/2010/05/wp7-using-the-camera-in-the-emulator/#comments</comments>
		<pubDate>Wed, 05 May 2010 22:11:11 +0000</pubDate>
		<dc:creator>Jeremy</dc:creator>
				<category><![CDATA[Windows Phone]]></category>

		<guid isPermaLink="false">http://www.japf.fr/?p=553</guid>
		<description><![CDATA[In the very first release of the SDK for Windows Phone 7 development, it was not possible to use the camera in the emulator. The latest version of the SDK fixes this problem. Windows Phone 7 SDK comes with a set of Task (in the Microsoft.Phone.Tasks namespace). A task can be launched from your application [...]]]></description>
			<content:encoded><![CDATA[<p>In the very first release of the SDK for Windows Phone 7 development, it was not possible to use the camera in the emulator. The latest version of the SDK fixes this problem.</p>
<p>Windows Phone 7 SDK comes with a set of Task (in the <a href="http://msdn.microsoft.com/en-us/library/microsoft.phone.tasks%28v=VS.92%29.aspx">Microsoft.Phone.Tasks</a> namespace). A task can be launched from your application in order to perform some work. Currently available tasks are:</p>
<ul>
<li> Capture Camera (<a href="http://msdn.microsoft.com/en-us/library/microsoft.phone.tasks.cameracapturetask(v=VS.92).aspx">StartCameraTask</a>)</li>
<li> Choose Email Address (<a href="http://msdn.microsoft.com/en-us/library/microsoft.phone.tasks.emailaddresschoosertask(v=VS.92).aspx">EmailAddressChooserTask</a>)</li>
<li> Compose Email (<a href="http://msdn.microsoft.com/en-us/library/microsoft.phone.tasks.emailcomposetask(v=VS.92).aspx">EmailComposeTask</a>)</li>
<li> Open Market Place (<a href="http://msdn.microsoft.com/en-us/library/microsoft.phone.tasks.marketplacelauncher(v=VS.92).aspx">MarketplaceLauncher</a>)</li>
<li> Open Media Player (<a href="http://msdn.microsoft.com/en-us/library/microsoft.phone.tasks.mediaplayerlauncher(v=VS.92).aspx">MediaPlayerLauncher</a>)</li>
<li> Make Phone Call (<a href="http://msdn.microsoft.com/en-us/library/microsoft.phone.tasks.phonecalltask(v=VS.92).aspx">PhoneCallTask</a>)</li>
<li> Pick Phone Number (<a href="http://msdn.microsoft.com/en-us/library/microsoft.phone.tasks.phonenumberchoosertask(v=VS.92).aspx">PhoneNumberChooserTask</a>)</li>
<li> Choose Photo (<a href="http://msdn.microsoft.com/en-us/library/microsoft.phone.tasks.photochoosertask(v=VS.92).aspx">PhotoChooserTask</a>)</li>
<li> Save Email (<a href="http://msdn.microsoft.com/en-us/library/microsoft.phone.tasks.saveemailaddresstask(v=VS.92).aspx">SaveEmailAddressTask</a>)</li>
<li> Save Phone Number (<a href="http://msdn.microsoft.com/en-us/library/microsoft.phone.tasks.savephonenumbertask(v=VS.92).aspx">SavePhoneNumberTask</a>)</li>
<li> Search (<a href="http://msdn.microsoft.com/en-us/library/microsoft.phone.tasks.searchtask(v=VS.92).aspx">SearchTask</a>)</li>
<li> Compose SMS (<a href="http://msdn.microsoft.com/en-us/library/microsoft.phone.tasks.smscomposetask(v=VS.92).aspx">SmsComposeTask</a>)</li>
<li> Browse Web (<a href="http://msdn.microsoft.com/en-us/library/microsoft.phone.tasks.webbrowsertask(v=VS.92).aspx">WebBrowserTask</a>)</li>
</ul>
<p>In order to launch a task from your application, all you need to do is to instantiate the associated type and call the Show() method.</p>
<p>Here is a sample code which launchs the StartCameraTask and then gets the capture images in order to use it in a standard Silverlight Image control:</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p553code7'); return false;">View Code</a> CSHARP</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p5537"><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
</pre></td><td class="code" id="p553code7"><pre class="csharp" style="font-family:monospace;"><span style="color: #008080; font-style: italic;">// launch the camera capture when the user touch the screen</span>
<span style="color: #0600FF; font-weight: bold;">this</span><span style="color: #008000;">.</span><span style="color: #0000FF;">MouseLeftButtonUp</span> <span style="color: #008000;">+=</span> <span style="color: #008000;">&#40;</span>s, e<span style="color: #008000;">&#41;</span> <span style="color: #008000;">=&gt;</span> <span style="color: #008000;">new</span> CameraCaptureTask<span style="color: #008000;">&#40;</span><span style="color: #008000;">&#41;</span><span style="color: #008000;">.</span><span style="color: #0000FF;">Show</span><span style="color: #008000;">&#40;</span><span style="color: #008000;">&#41;</span><span style="color: #008000;">;</span>
&nbsp;
<span style="color: #008080; font-style: italic;">// this static event is raised when a task completes its job</span>
ChooserListener<span style="color: #008000;">.</span><span style="color: #0000FF;">ChooserCompleted</span> <span style="color: #008000;">+=</span> <span style="color: #008000;">&#40;</span>s, e<span style="color: #008000;">&#41;</span> <span style="color: #008000;">=&gt;</span>
<span style="color: #008000;">&#123;</span>
    var taskEventArgs <span style="color: #008000;">=</span> <span style="color: #008000;">&#40;</span>TaskEventArgs<span style="color: #008000;">&lt;</span>PhotoResult<span style="color: #008000;">&gt;</span><span style="color: #008000;">&#41;</span>e<span style="color: #008000;">;</span>
    var photoStream <span style="color: #008000;">=</span> taskEventArgs<span style="color: #008000;">.</span><span style="color: #0000FF;">Result</span><span style="color: #008000;">.</span><span style="color: #0000FF;">ChosenPhoto</span><span style="color: #008000;">;</span>
&nbsp;
    var bitmapImage <span style="color: #008000;">=</span> <span style="color: #008000;">new</span> BitmapImage<span style="color: #008000;">&#40;</span><span style="color: #008000;">&#41;</span><span style="color: #008000;">;</span>
    bitmapImage<span style="color: #008000;">.</span><span style="color: #0000FF;">SetSource</span><span style="color: #008000;">&#40;</span>photoStream<span style="color: #008000;">&#41;</span><span style="color: #008000;">;</span>
&nbsp;
    <span style="color: #0600FF; font-weight: bold;">this</span><span style="color: #008000;">.</span><span style="color: #0000FF;">image</span><span style="color: #008000;">.</span><span style="color: #0000FF;">Source</span> <span style="color: #008000;">=</span> bitmapImage<span style="color: #008000;">;</span>
<span style="color: #008000;">&#125;</span><span style="color: #008000;">;</span></pre></td></tr></table></div>

<p>The <em>image</em> is just a standard Silverlight Image control:</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p553code8'); return false;">View Code</a> XML</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p5538"><td class="line_numbers"><pre>1
</pre></td><td class="code" id="p553code8"><pre class="xml" style="font-family:monospace;"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;Image</span> <span style="color: #000066;">x:Name</span>=<span style="color: #ff0000;">&quot;image&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span></pre></td></tr></table></div>

<p>The emulator while the task is running:</p>
<p><a href="http://www.japf.fr/wp-content/uploads/2010/05/EmulatorCaptureCamera1.png" rel="lightbox[553]"><img class="alignnone size-full wp-image-557" title="EmulatorCaptureCamera" src="http://www.japf.fr/wp-content/uploads/2010/05/EmulatorCaptureCamera1.png" alt="" width="300" height="153" /></a></p>
<p>The captured image (shown once the task has completed):</p>
<p><a href="http://www.japf.fr/wp-content/uploads/2010/05/ResultImage1.png" rel="lightbox[553]"><img class="alignnone size-full wp-image-558" title="ResultImage" src="http://www.japf.fr/wp-content/uploads/2010/05/ResultImage1.png" alt="" width="297" height="151" /></a></p>
<p>If you haven&#8217;t download the tool already, go ahead and grab them ! Everything is available <strong>for free</strong> in a <strong>single download</strong> at <a href="http://developer.windowsphone.com/windows-phone-7-series/">http://developer.windowsphone.com/windows-phone-7-series/</a>.</p>
<p>Hope this helps <img src='http://www.japf.fr/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p><em>Note: even though the StartCameraTask is now working, this is not yet the case for all the tasks&#8230; </em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.japf.fr/2010/05/wp7-using-the-camera-in-the-emulator/feed/</wfw:commentRss>
		<slash:comments>20</slash:comments>
		</item>
		<item>
		<title>[WP7] Bug when using NavigationService in Windows Phone 7</title>
		<link>http://www.japf.fr/2010/05/bug-when-using-navigationservice-in-windows-phone-7/</link>
		<comments>http://www.japf.fr/2010/05/bug-when-using-navigationservice-in-windows-phone-7/#comments</comments>
		<pubDate>Mon, 03 May 2010 20:45:20 +0000</pubDate>
		<dc:creator>Jeremy</dc:creator>
				<category><![CDATA[Windows Phone]]></category>
		<category><![CDATA[wp7]]></category>

		<guid isPermaLink="false">http://www.japf.fr/?p=542</guid>
		<description><![CDATA[The last couple of days, I&#8217;m playing with my favourite tools in order to build a simple WP7 demo application. I just encountered a weird problem which I wanted to share here&#8230; I&#8217;ll update this article as soon as I&#8217;ll get some feedback from Microsoft about this issue. Note: this problem did not occur if [...]]]></description>
			<content:encoded><![CDATA[<p>The last couple of days, I&#8217;m playing with my favourite tools in order to build a simple WP7 demo application. I just encountered a weird problem which I wanted to share here&#8230; I&#8217;ll update this article as soon as I&#8217;ll get some feedback from Microsoft about this issue.</p>
<p><em>Note: this problem did not occur if you&#8217;re using the first CTP of the WP7 tools</em></p>
<p><strong>To reproduce the bug:</strong></p>
<ul>
<li>Create a new Windows Phone 7 application in VS2010</li>
<li>Add a new page (use the default name: Page1)</li>
<li>In the MainPage, add the following XAML code:</li>
</ul>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p542code11'); return false;">View Code</a> XML</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p54211"><td class="line_numbers"><pre>1
2
3
</pre></td><td class="code" id="p542code11"><pre class="xml" style="font-family:monospace;"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;ListBox<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;Button</span> <span style="color: #000066;">MouseLeftButtonDown</span>=<span style="color: #ff0000;">&quot;Handler&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/ListBox<span style="color: #000000; font-weight: bold;">&gt;</span></span></span></pre></td></tr></table></div>

<ul>
<li>In the code-behind, add the following handler:</li>
</ul>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p542code12'); return false;">View Code</a> CSHARP</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p54212"><td class="line_numbers"><pre>1
2
3
4
</pre></td><td class="code" id="p542code12"><pre class="csharp" style="font-family:monospace;"><span style="color: #0600FF; font-weight: bold;">private</span> <span style="color: #6666cc; font-weight: bold;">void</span> Handler<span style="color: #008000;">&#40;</span><span style="color: #6666cc; font-weight: bold;">object</span> sender, MouseButtonEventArgs mouseButtonEventArgs<span style="color: #008000;">&#41;</span>
<span style="color: #008000;">&#123;</span>
    <span style="color: #0600FF; font-weight: bold;">this</span><span style="color: #008000;">.</span><span style="color: #0000FF;">NavigationService</span><span style="color: #008000;">.</span><span style="color: #0000FF;">Navigate</span><span style="color: #008000;">&#40;</span><span style="color: #008000;">new</span> Uri<span style="color: #008000;">&#40;</span><span style="color: #666666;">&quot;/Page1.xaml&quot;</span>, UriKind<span style="color: #008000;">.</span><span style="color: #0000FF;">Relative</span><span style="color: #008000;">&#41;</span><span style="color: #008000;">&#41;</span><span style="color: #008000;">;</span>
<span style="color: #008000;">&#125;</span></pre></td></tr></table></div>

<ul>
<li>Run the application and click on the TextBlock</li>
<li>You&#8217;ll get an ArgumentException with the following StackTrace:</li>
</ul>
<p><em>at MS.Internal.XcpImports.MethodEx(IntPtr ptr, String name, CValue[]  cvData)<br />
at MS.Internal.XcpImports.MethodPack(IntPtr objectPtr,  String methodName, Object[] rawData)<br />
at  MS.Internal.XcpImports.UIElement_TransformToVisual(UIElement element,  UIElement visual)<br />
at  System.Windows.UIElement.TransformToVisual(UIElement visual)<br />
at  System.Windows.Controls.ScrollViewer.OnManipulationStarted(ManipulationStartedEventArgs  e)<br />
at System.Windows.Controls.Control.OnManipulationStarted(Control  ctrl, EventArgs e)<br />
at MS.Internal.JoltHelper.FireEvent(IntPtr  unmanagedObj, IntPtr unmanagedObjArgs, Int32 argsTypeIndex, String  eventName)</em></p>
<p><strong>Analysis:</strong></p>
<p>It took me some time to reproduce this problem in a very simple application. At the very beginning, I though it has something do to with the EventToCommand behavior I was using (from the famous <a href="http://www.galasoft-lb.ch/mvvm/getstarted/">MVVM-Light</a> framework of Laurent Bugnion) but after talking with Laurent it was clear it wasn&#8217;t the case.</p>
<p>The StackTrace seems to indicate a problem with the ScrollViewer of the ListBox&#8230;</p>
<p><strong>Workaround:</strong></p>
<p>Several possibilities seems to be working:</p>
<ol>
<li>Change the ListBox to an ItemsControl</li>
<li>Or, change the event to ManipulationCompleted</li>
</ol>
<p>I didn&#8217;t find the correct location in order to log this issue on Microsoft Connect. Pleas let me know if you have the URL</p>
]]></content:encoded>
			<wfw:commentRss>http://www.japf.fr/2010/05/bug-when-using-navigationservice-in-windows-phone-7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mix10 :  first Windows Phone application using Blend4</title>
		<link>http://www.japf.fr/2010/03/mix10-first-windows-phone-application-using-blend4/</link>
		<comments>http://www.japf.fr/2010/03/mix10-first-windows-phone-application-using-blend4/#comments</comments>
		<pubDate>Mon, 15 Mar 2010 20:35:33 +0000</pubDate>
		<dc:creator>Jeremy</dc:creator>
				<category><![CDATA[Events]]></category>
		<category><![CDATA[Silverlight]]></category>
		<category><![CDATA[Windows Phone]]></category>
		<category><![CDATA[blend]]></category>
		<category><![CDATA[mix10]]></category>

		<guid isPermaLink="false">http://www.japf.fr/?p=473</guid>
		<description><![CDATA[You&#8217;ll need not more than a couple of minutes to download and install all the tools needed to create your first Windows Phone application using Blend. Here is a tour in images: Welcome in Blend 4 Discovering new projects templates in the Welcome dialog: It must be quite familiar to you if you&#8217;re working with [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.japf.fr/wp-content/uploads/2010/03/Mix101.jpg" rel="lightbox[473]"><img class="alignnone size-full wp-image-456" title="Mix10" src="http://www.japf.fr/wp-content/uploads/2010/03/Mix101.jpg" alt="" width="157" height="96" /></a></p>
<p>You&#8217;ll need not more than a couple of minutes to download and install <a href="http://www.japf.fr/2010/03/mix10-windows-phone-7-series-development-tools-available/">all the tools</a> needed to create your first Windows Phone application using Blend.</p>
<p><a href="../wp-content/uploads/2010/03/WindowsPhone7Series2.jpg" rel="lightbox[473]"><img title="WindowsPhone7Series2" src="../wp-content/uploads/2010/03/WindowsPhone7Series2.jpg" alt="" width="521" height="307" /></a></p>
<p>Here is a tour in images:</p>
<p>Welcome in Blend 4</p>
<p><a href="http://www.japf.fr/wp-content/uploads/2010/03/Blend1.png" rel="lightbox[473]"><img class="alignnone size-full wp-image-474" title="Blend1" src="http://www.japf.fr/wp-content/uploads/2010/03/Blend1.png" alt="" width="173" height="262" /></a></p>
<p>Discovering new projects templates in the Welcome dialog:</p>
<p><a href="http://www.japf.fr/wp-content/uploads/2010/03/Blend2.png" rel="lightbox[473]"><img class="alignnone size-full wp-image-475" title="Blend2" src="http://www.japf.fr/wp-content/uploads/2010/03/Blend2.png" alt="" width="350" height="296" /></a></p>
<p>It must be quite familiar to you if you&#8217;re working with WPF or Silverlight</p>
<p><a href="http://www.japf.fr/wp-content/uploads/2010/03/Blend3.png" rel="lightbox[473]"><img class="alignnone size-full wp-image-476" title="Blend3" src="http://www.japf.fr/wp-content/uploads/2010/03/Blend3.png" alt="" width="697" height="522" /></a></p>
<p>Choosing a target</p>
<p><a href="http://www.japf.fr/wp-content/uploads/2010/03/Blend4.png" rel="lightbox[473]"><img class="alignnone size-full wp-image-477" title="Blend4" src="http://www.japf.fr/wp-content/uploads/2010/03/Blend4.png" alt="" width="268" height="153" /></a></p>
<p>Launching the app in the emulator</p>
<p><a href="http://www.japf.fr/wp-content/uploads/2010/03/Blend5.png" rel="lightbox[473]"><img class="alignnone size-full wp-image-478" title="Blend5" src="http://www.japf.fr/wp-content/uploads/2010/03/Blend5.png" alt="" width="272" height="479" /></a></p>
<p>App.xaml file has all the resources for the Windows Phone theme</p>
<p><a href="http://www.japf.fr/wp-content/uploads/2010/03/Blend6.png" rel="lightbox[473]"><img class="alignnone size-full wp-image-479" title="Blend6" src="http://www.japf.fr/wp-content/uploads/2010/03/Blend6.png" alt="" width="385" height="204" /></a></p>
<p>Let&#8217;s go now and play with the tools <img src='http://www.japf.fr/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.japf.fr/2010/03/mix10-first-windows-phone-application-using-blend4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mix10: Windows Phone 7 series development tools available</title>
		<link>http://www.japf.fr/2010/03/mix10-windows-phone-7-series-development-tools-available/</link>
		<comments>http://www.japf.fr/2010/03/mix10-windows-phone-7-series-development-tools-available/#comments</comments>
		<pubDate>Mon, 15 Mar 2010 19:40:27 +0000</pubDate>
		<dc:creator>Jeremy</dc:creator>
				<category><![CDATA[Events]]></category>
		<category><![CDATA[Silverlight]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Windows Phone]]></category>
		<category><![CDATA[mix10]]></category>

		<guid isPermaLink="false">http://www.japf.fr/?p=469</guid>
		<description><![CDATA[The first keynote of Mix10 is just over and the biggest announcement I was waiting for occured: Windows Phone 7 series development tools are NOW available for FREE. Grab the tools right now ! You&#8217;ll need: Expression Blend 4 Beta Windows Phone Developer Tools Expression Blend Add-in for Windows Phone Expression Blend SDK for Windows [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.japf.fr/wp-content/uploads/2010/03/Mix101.jpg" rel="lightbox[469]"><img class="alignnone size-full wp-image-456" title="Mix10" src="http://www.japf.fr/wp-content/uploads/2010/03/Mix101.jpg" alt="" width="157" height="96" /></a></p>
<p>The first keynote of Mix10 is just over and the biggest announcement I was waiting for occured: Windows Phone 7 series development tools are NOW available for FREE.</p>
<p>Grab the tools right now ! You&#8217;ll need:</p>
<ul>
<li><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=6f014e07-0053-4aca-84a7-cd82f9aa989f&amp;displaylang=en">Expression Blend 4 Beta</a></li>
<li><a href="http://developer.windowsphone.com/windows-phone-7-series">Windows Phone Developer Tools</a></li>
<li><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=47f5c718-9dec-4557-9687-619c0fdd3d4f&amp;displaylang=en">Expression Blend Add-in for Windows Phone</a></li>
<li><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=86370108-4c14-42ee-8855-226e5dd9b85b">Expression Blend SDK for Windows Phone</a></li>
</ul>
<p>If you want more details about Blend4, you can check out Christian Schormann&#8217;s <a href="http://electricbeach.org/?p=438">overview</a>.<a href="http://electricbeach.org/?p=438" target="_blank"><strong> </strong></a> A new website is now live for all Windows Phone 7 series related development information at <a href="http://developer.windowsphone.com/">http://developer.windowsphone.com/</a></p>
<p>Another announcements is the availability of Silverlight 4 RC and support for VS2010 RC:</p>
<ul>
<li><a href="http://go.microsoft.com/fwlink/?LinkID=141284">Silverlight  4 Tools for Visual Studio 2010</a> (this installs Silverlight developer  runtime, SDK, tools, and <a href="http://silverlight.net/riaservices">WCF  RIA Services</a>).</li>
<li><a href="http://silverlight.codeplex.com/">Silverlight Toolkit</a> March 2010 Release</li>
<li><a href="http://go.microsoft.com/fwlink/?LinkId=185121">WCF RIA  Services Toolkit</a></li>
<li><a href="http://go.microsoft.com/fwlink/?LinkId=169446">Expression  Blend 4 beta</a></li>
<li><a href="http://go.microsoft.com/fwlink/?LinkId=167831">BREAKING  CHANGES DOCUMENTATION</a></li>
<li><a href="http://silverlight.net/getstarted/devices/windows-phone">Windows  Phone Developer tools</a></li>
</ul>
<p>For more information about Silverlight 4 RC, you can check out the blog post of <a href="http://timheuer.com/blog/archive/2010/03/15/whats-new-in-silverlight-4-rc-mix10.aspx?utm_source=Twitter-timheuer">Tim Heuer</a>.</p>
<p>I can&#8217;t wait to play with all this new stuff. It&#8217;s very impressive to see the work done around Windows Phone 7 series. WPF and Silverlight developers just became Windows Phone developer today, and I think this is great !</p>
<p>I&#8217;ll give more feedback as soon as the tools will be installed <img src='http://www.japf.fr/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.japf.fr/2010/03/mix10-windows-phone-7-series-development-tools-available/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Mix10 is coming : Windows Phone 7 series sessions announced !</title>
		<link>http://www.japf.fr/2010/03/mix10-is-coming-windows-phone-7-series-sessions-announced/</link>
		<comments>http://www.japf.fr/2010/03/mix10-is-coming-windows-phone-7-series-sessions-announced/#comments</comments>
		<pubDate>Sun, 07 Mar 2010 21:34:21 +0000</pubDate>
		<dc:creator>Jeremy</dc:creator>
				<category><![CDATA[Events]]></category>
		<category><![CDATA[Silverlight]]></category>
		<category><![CDATA[Windows Phone]]></category>
		<category><![CDATA[mix10]]></category>
		<category><![CDATA[wp7]]></category>

		<guid isPermaLink="false">http://www.japf.fr/?p=449</guid>
		<description><![CDATA[Next monday, Mix10 will start in Las Vegas. Even though it&#8217;s a little bit far from my place here in France I&#8217;ll try to give feedback after the keynotes and as soon as first videos will be available. I&#8217;m sure you&#8217;re aware that major announcements this years at Mix will be about the Windows Phone [...]]]></description>
			<content:encoded><![CDATA[<p>Next monday, Mix10 will start in Las Vegas. Even though it&#8217;s a little bit far from my place here in France I&#8217;ll try to give feedback after the keynotes and as soon as first videos will be available. I&#8217;m sure you&#8217;re aware that major announcements this years at Mix will be about the Windows Phone 7 series.</p>
<p><a href="http://www.japf.fr/wp-content/uploads/2010/03/3-windows-mobile.jpg" rel="lightbox[449]"><img class="alignnone size-full  wp-image-451" title="3-windows-mobile" src="http://www.japf.fr/wp-content/uploads/2010/03/3-windows-mobile.jpg" alt="" width="371" height="244" /></a></p>
<p>To make the long story short :</p>
<ul>
<li>Windows Mobile 7 was <a href="http://www.microsoft.com/presspass/presskits/windowsphone/VideoGallery.aspx">presented during last WMC</a> (Word Mobile Congress) under the name &#8220;Windows Phone 7 series&#8221;</li>
<li>Microsoft demonstrated the new UI experience coming with this new version</li>
<li>Microsoft <a href="http://blogs.msdn.com/ckindel/archive/2010/03/04/different-means-better-with-the-new-windows-phone-developer-experience.aspx">confirmed</a> that Silverlight and XNA will be the technologies available to develop on the Windows Phone</li>
<li>Microsoft <a href="http://www.engadget.com/2010/03/06/microsoft-shows-off-single-game-running-on-windows-windows-phon/">shows off single game running on Windows, Windows Phone and  Xbox</a></li>
</ul>
<p>I&#8217;m sure you realize that we are going to a very capable and powerful mobile platform here:</p>
<ul>
<li>all existing .Net and Silverlight developers are going to be able to write apps for the Windows Phone (this is HUGE)</li>
<li>we are going to finally have the 3 screens version of Microsoft: develop once and then run on your mobile, your PC and your TV (XBox)</li>
</ul>
<p>Mix10 website now contains the name and the description of the sessions which are dedicated to the Windows Phone 7 series:</p>
<ul>
<li><a href="http://live.visitmix.com/MIX10/Sessions/CL23">Designing and Developing for the Rich Mobile Web</a></li>
<li><a href="http://live.visitmix.com/MIX10/Sessions/CL22">Building a High Performance 3D Game for Windows Phone</a></li>
<li><a href="http://live.visitmix.com/MIX10/Sessions/CL21">Building Windows Phone Games</a></li>
<li><a href="http://live.visitmix.com/MIX10/Sessions/CL01">Changing our Game – an Introduction to Windows Phone 7 Series</a></li>
<li><a href="http://live.visitmix.com/MIX10/Sessions/CL15">An Introduction to Developing Applications for Microsoft Silverlight</a></li>
<li><a href="http://live.visitmix.com/MIX10/Sessions/CL14">Windows Phone UI and Design Language</a></li>
<li><a href="http://live.visitmix.com/MIX10/Sessions/CL13">Overview of the Windows Phone 7 Series Application Platform</a></li>
<li><a href="http://live.visitmix.com/MIX10/Sessions/CL16">Building Windows Phone Applications with Silverlight, Part 1</a></li>
<li><a href="http://live.visitmix.com/MIX10/Sessions/CL17">Building Windows Phone Applications with Silverlight, Part 2</a></li>
<li><a href="http://live.visitmix.com/MIX10/Sessions/CL59">Unit Testing Silverlight and Windows Phone 7 Applications</a></li>
<li><a href="http://live.visitmix.com/MIX10/Sessions/CL60">Silverlight Performance on Windows Phone</a></li>
<li><a href="http://live.visitmix.com/MIX10/Sessions/CL20">Distributing and Monetizing Windows Phone Applications and Games</a></li>
<li><a href="http://live.visitmix.com/MIX10/Sessions/CL19">Development and Debugging Tools for Building XNA Games for Windows Phone</a></li>
<li><a href="http://live.visitmix.com/MIX10/Sessions/CL18">Windows Phone Application Platform Architecture</a></li>
</ul>
<p>If you&#8217;re using Twitter, make sure to watch the <a href="http://twitter.com/#search?q=%23wp7">#wp7</a> hashtag. It make not any doubt the next week is going to be very informative about Windows Phone 7 series.So stay tuned !</p>
]]></content:encoded>
			<wfw:commentRss>http://www.japf.fr/2010/03/mix10-is-coming-windows-phone-7-series-sessions-announced/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
