<?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>&#60; web:Blog x:Name=&#34;Brian Lagunas&#34; &#47;&#62; &#187; BSDG</title>
	<atom:link href="http://www.brianlagunas.com/index.php/category/bsdg/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.brianlagunas.com</link>
	<description></description>
	<lastBuildDate>Fri, 03 Sep 2010 01:55:48 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>BSDG &#8211; Silverlight/WPF Multi-Targeting Presentation Sample Code</title>
		<link>http://www.brianlagunas.com/index.php/2009/12/04/bsdg-silverlightwpf-multi-targeting-presentation-sample-code/</link>
		<comments>http://www.brianlagunas.com/index.php/2009/12/04/bsdg-silverlightwpf-multi-targeting-presentation-sample-code/#comments</comments>
		<pubDate>Fri, 04 Dec 2009 18:37:46 +0000</pubDate>
		<dc:creator>Brian Lagunas</dc:creator>
				<category><![CDATA[BSDG]]></category>
		<category><![CDATA[Silverlight]]></category>
		<category><![CDATA[WPF]]></category>
		<category><![CDATA[XAML]]></category>
		<category><![CDATA[multi-targeting]]></category>

		<guid isPermaLink="false">http://brianlagunas.com/2009/12/04/bsdg-silverlightwpf-multi-targeting-presentation-sample-code/</guid>
		<description><![CDATA[If you attended the BSDG user group meeting last night and would like to download the sample code for my Silverlight/WPF Multi-Targeting presentation, you can download it here. 
Recap:
The Silverlight and WPF platforms are very similar, but they do not have binary compatibility; this means that an assembly compiled for one platform cannot execute on [...]]]></description>
			<content:encoded><![CDATA[<p>If you attended the BSDG user group meeting last night and would like to download the sample code for my Silverlight/WPF Multi-Targeting presentation, you can <a href="http://www.brianlagunas.com/downloads/presentations/MultiTargetingDemo.zip" target="_blank">download it here</a>. </p>
<p><strong>Recap:</strong></p>
<p>The Silverlight and WPF platforms are very similar, but they do not have binary compatibility; this means that an assembly compiled for one platform cannot execute on the other platform (Although, the story is a little different in Silverlight 4). You may want to target some or all of your application on WPF and Silverlight for a number of reasons. </p>
<p>Due to the fact that Silverlight and WPF are so closely related, the bulk of your application code can be shared between the two platforms. This encourages heavy use of pattern based development to isolate the logic from the presentation and maximize the separation between UI code and non-UI code.</p>
<p><strong>Elements you can share:</strong></p>
<ul>
<li>Presenters </li>
<li>Controllers </li>
<li>Models </li>
<li>Services </li>
<li>Unit tests </li>
<li>Simple views, if the XAML used is supported by both Silverlight and WPF. </li>
</ul>
<p><strong>Elements that are harder to share:</strong></p>
<ul>
<li>Complex views (XAML) </li>
<li>Controls </li>
<li>Styling </li>
<li>Animation </li>
</ul>
<p>Like always, if anyone has any questions feel free ask.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.brianlagunas.com/index.php/2009/12/04/bsdg-silverlightwpf-multi-targeting-presentation-sample-code/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>BSDG &#8211; PRISM/MVVM for WPF Presentation Sample Code</title>
		<link>http://www.brianlagunas.com/index.php/2009/06/05/bsdg-prismmvvm-for-wpf-presentation-sample-code/</link>
		<comments>http://www.brianlagunas.com/index.php/2009/06/05/bsdg-prismmvvm-for-wpf-presentation-sample-code/#comments</comments>
		<pubDate>Fri, 05 Jun 2009 14:40:45 +0000</pubDate>
		<dc:creator>Brian Lagunas</dc:creator>
				<category><![CDATA[BSDG]]></category>
		<category><![CDATA[Prism]]></category>
		<category><![CDATA[WPF]]></category>
		<category><![CDATA[mvvm]]></category>
		<category><![CDATA[presentations]]></category>

		<guid isPermaLink="false">http://elegantcode.com/2009/06/05/bsdg-prismmvvm-for-wpf-presentation-sample-code/</guid>
		<description><![CDATA[As promised, I am posting the sample code I covered in the presentation for everyone to download and start playing with.&#160; If you have any questions or would like me to discuss a specific aspect in more detail just drop me a line.
Download the Presentation Source.&#160; This contains the all sample code that I discussed [...]]]></description>
			<content:encoded><![CDATA[<p>As promised, I am posting the sample code I covered in the presentation for everyone to download and start playing with.&#160; If you have any questions or would like me to discuss a specific aspect in more detail just drop me a line.</p>
<p><a href="http://brianlagunas.com/Downloads/Presentations/Prism_MVVM_Demo.zip">Download the Presentation Source</a>.&#160; This contains the all sample code that I discussed during the presentation.</p>
<p>Useful links:</p>
<ul>
<li>The <a href="http://compositewpf.codeplex.com/" target="_blank">Composite WPF and Silverlight</a> (Prism) website is where you want to start. </li>
<li><a href="http://elegantcode.com/2009/04/22/code-cast-26-prism-20/" target="_blank">Elegant Code Cast of Prism v2</a> – David Starr, Scott Nichols, and myself sat down with the Patterns and Practices team to discuss Prism. </li>
<li><a href="http://channel9.msdn.com/tags/Prism/" target="_blank">Channel9</a> has some good videos available to help you understand and get started using Prism. </li>
<li><a href="http://www.amazon.com/WPF-Recipes-2008-Problem-Solution-Approach/dp/1430210842/ref=sr_1_2?ie=UTF8&amp;s=books&amp;qid=1238262991&amp;sr=1-2" target="_blank">WPF Recipes in C# 2008: A Problem-Solution Approach</a> – This is not a Prism book but it is a great book for solving common problems in WPF. </li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.brianlagunas.com/index.php/2009/06/05/bsdg-prismmvvm-for-wpf-presentation-sample-code/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
