<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Rhonda Tipton&#039;s Blog &#187; XAML</title>
	<atom:link href="http://rhondatipton.net/category/xaml/feed/" rel="self" type="application/rss+xml" />
	<link>http://rhondatipton.net</link>
	<description>Stuff I Learn, Stuff I Like</description>
	<lastBuildDate>Mon, 26 Mar 2012 03:33:33 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='rhondatipton.net' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Rhonda Tipton&#039;s Blog &#187; XAML</title>
		<link>http://rhondatipton.net</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://rhondatipton.net/osd.xml" title="Rhonda Tipton&#039;s Blog" />
	<atom:link rel='hub' href='http://rhondatipton.net/?pushpress=hub'/>
		<item>
		<title>D2 SIG Meeting &#8211; 07/07/2009 &#8211; Recap</title>
		<link>http://rhondatipton.net/2009/07/12/d2-sig-meeting-07072009-recap/</link>
		<comments>http://rhondatipton.net/2009/07/12/d2-sig-meeting-07072009-recap/#comments</comments>
		<pubDate>Mon, 13 Jul 2009 01:54:33 +0000</pubDate>
		<dc:creator>Rhonda</dc:creator>
				<category><![CDATA[Community]]></category>
		<category><![CDATA[WPF]]></category>
		<category><![CDATA[XAML]]></category>

		<guid isPermaLink="false">http://rtipton.wordpress.com/2009/07/12/d2-sig-meeting-07072009-recap/</guid>
		<description><![CDATA[I attended the July D2 SIG Meeting this passed Tuesday.&#160; Claudio Lassala was speaking on the topic of Data Binding in WPF.&#160; Pretty good turnout of 30-35 people, especially since this is a fairly new group. Claudio&#8217;s Information Blog: http://ClaudioLassala.spaces.live.com Email: Claudio@eps-software.com Twitter: http://Twitter.com/claudiolassala High-level Presentation Summary WPF &#8211; Windows Presentation Foundation &#8211; WikiPedia defines [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rhondatipton.net&#038;blog=148560&#038;post=1064&#038;subd=rtipton&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.d2sig.org/default.aspx" target="_blank"><img style="border-width:0;" height="68" alt="d2siglogo" src="http://rtipton.files.wordpress.com/2009/07/d2siglogo.jpg?w=85&h=68" width="85" border="0"></a>
<p>I attended the July <a href="http://www.d2sig.org" target="_blank">D2 SIG</a> Meeting this passed Tuesday.&nbsp; <a href="http://claudiolassala.spaces.live.com" target="_blank">Claudio Lassala</a> was speaking on the topic of Data Binding in WPF.&nbsp; Pretty good turnout of 30-35 people, especially since this is a fairly new group.
<p><strong><u>Claudio&#8217;s Information</u></strong>
<ul>
<li>Blog: <a href="http://ClaudioLassala.spaces.live.com">http://ClaudioLassala.spaces.live.com</a>
<li>Email: <a href="mailto:Claudio@eps-software.com">Claudio@eps-software.com</a>
<li>Twitter: <a href="http://Twitter.com/claudiolassala">http://Twitter.com/claudiolassala</a></li>
</ul>
<p><strong><u>High-level Presentation Summary</u></strong>
<p><a href="http://windowsclient.net/" target="_blank">WPF</a> &#8211; Windows Presentation Foundation &#8211; <a href="http://en.wikipedia.org/wiki/Windows_Presentation_Foundation" target="_blank">WikiPedia defines a WPF</a> as graphical subsystem for rendering user interfaces in Windows-based applications.
<p><a href="http://msdn.microsoft.com/en-us/library/ms752059.aspx" target="_blank">XAML</a> &#8211; Extensible Application Markup Language &#8211; The declarative language behind WPF
<p>The simple concept of <a href="http://msdn.microsoft.com/en-us/library/ms752347.aspx" target="_blank">data binding</a> is relating two objects and saying when one changes, so does the other.
<p><strong><em>Objects involved in Data Binding</em></strong>
<ul>
<li>Target &#8211; TextBox, ComboBox,etc
<li>Source &#8211; Customer object </li>
</ul>
<p><strong><em>Binding Modes in WPF </em></strong>
<ul>
<li>OneWay &#8211; reads the information from the source and populates the target TextBox.
<li>TwoWay &#8211; reads the information from the source and populates the target TextBox, but if the TextBox is changed, it updates the source Customer Object. This needs notification through a <a href="http://msdn.microsoft.com/en-us/library/system.windows.dependencyobject.aspx" target="_blank">DependencyObject</a> or <a href="http://msdn.microsoft.com/en-us/library/system.componentmodel.inotifypropertychanged.aspx" target="_blank">INotifyPropertyChanged</a>.
<li>OneWayToSource &#8211; sends data from the target to the source.</li>
</ul>
<p><em><strong>Types of Binding</strong> </em>
<ul>
<li>XAML Binding
<li>Programmatic Binding </li>
</ul>
<p>Bindings can be removed using <a href="http://msdn.microsoft.com/en-us/library/system.windows.data.bindingoperations.clearbinding.aspx" target="_blank">BindingOperations.ClearBinding()</a> method
<p><strong><em>Relative Sources</em></strong>
<ul>
<li>Self, TemplatedParent, FindAncestor, PreviousData
<li>Value Converters can convert values during the process of binding.
<li>Data Validation
<li>Data Templates </li>
</ul>
<p><strong><em>Some of the examples Claudio went over included</em></strong>
<ul>
<li>Binding an image control to a byte array
<li>ListBox
<li>Validation Rules
<li>Simple Binding from Blend
<li>TwoWay Notification
<li>Rating to Color Converter
<li>XML Data Provider </li>
</ul>
<p><a href="http://claudiolassala.spaces.live.com/blog/cns!E2A4B22308B39CD2!2100.entry" target="_blank">Presentation Slides and Demo Code</a>
<p>Claudio does a great job of showing you how you should not code something then following by how you should.
<p>&#8211;
<p>Until next time&#8230;  </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rtipton.wordpress.com/1064/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rtipton.wordpress.com/1064/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rtipton.wordpress.com/1064/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rtipton.wordpress.com/1064/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/rtipton.wordpress.com/1064/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/rtipton.wordpress.com/1064/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/rtipton.wordpress.com/1064/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/rtipton.wordpress.com/1064/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rtipton.wordpress.com/1064/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rtipton.wordpress.com/1064/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rtipton.wordpress.com/1064/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rtipton.wordpress.com/1064/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rtipton.wordpress.com/1064/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rtipton.wordpress.com/1064/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rhondatipton.net&#038;blog=148560&#038;post=1064&#038;subd=rtipton&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rhondatipton.net/2009/07/12/d2-sig-meeting-07072009-recap/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/522aa96ec9478f99474af8ecab1c6247?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">RTipton</media:title>
		</media:content>

		<media:content url="http://rtipton.files.wordpress.com/2009/07/d2siglogo.jpg" medium="image">
			<media:title type="html">d2siglogo</media:title>
		</media:content>
	</item>
		<item>
		<title>Houston D2 SIG Meeting &#8211; 11/06/08 &#8211; Recap</title>
		<link>http://rhondatipton.net/2008/11/08/houston-d2-sig-meeting-110608-recap/</link>
		<comments>http://rhondatipton.net/2008/11/08/houston-d2-sig-meeting-110608-recap/#comments</comments>
		<pubDate>Sat, 08 Nov 2008 20:11:03 +0000</pubDate>
		<dc:creator>Rhonda</dc:creator>
				<category><![CDATA[Community]]></category>
		<category><![CDATA[WPF]]></category>
		<category><![CDATA[XAML]]></category>

		<guid isPermaLink="false">http://rtipton.wordpress.com/2008/11/08/houston-d2-sig-meeting-110608-recap/</guid>
		<description><![CDATA[&#160; I attended the inaugural meeting of the D2 SIG last night and I have to say it was a pretty good turnout for a first meeting.&#160; I counted about 40 people in attendance.&#160; The D2 (Developers 2 Designers) Special Interest Group is being put on by EPS Software and Torque FKM.&#160; It will always [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rhondatipton.net&#038;blog=148560&#038;post=815&#038;subd=rtipton&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img height="180" src="http://farm4.static.flickr.com/3174/3010539316_48ebddd316.jpg?v=0" width="240">&nbsp; </p>
<p>I attended the inaugural meeting of the <a href="http://www.d2sig.org" target="_blank">D2 SIG</a> last night and I have to say it was a pretty good turnout for a first meeting.&nbsp; I counted about 40 people in attendance.&nbsp; </p>
<p><a href="http://www.eps-software.com" target="_blank"><img height="69" src="http://farm3.static.flickr.com/2001/2658548816_90e4db967d.jpg?v=0" width="140"></a> <a href="http://www.torquefkm.com/" target="_blank"><img height="56" src="http://farm4.static.flickr.com/3031/3009714557_70e1ee046a.jpg?v=0" width="162"></a> </p>
<p>The D2 (Developers 2 Designers) Special Interest Group is being put on by <a href="http://www.eps-software.com/" target="_blank">EPS Software</a> and <a href="http://www.torquefkm.com/" target="_blank">Torque FKM</a>.&nbsp; It will always be on the first Tuesday of each month at the Microsoft Houston offices.&nbsp; The plan is for the meeting to start around 6:15 with a 30 minute tip/trick presentation and then a break and the main presentation will start at 7:00 and go to 8:30 or so. Sounds like a great plan and I look forward to future meetings.</p>
<p><a href="http://www.markusegger.com/" target="_blank">Markus Egger</a> gave a great overview presentation on WPF, Silverlight and Surface.&nbsp; Some of the high points are below.</p>
<ul>
<li>The User Interface Revolution
<li>Technologies involved: <a href="http://silverlight.net" target="_blank">Silverlight</a>, <a href="http://windowsclient.net/" target="_blank">WPF</a>, <a href="http://www.asp.net" target="_blank">ASP.NET</a> (Web forms, AJAX, MVC), <a href="http://www.microsoft.com/surface/index.html" target="_blank">MS Surface</a>
<li>Visual Studio and Expression Blend are used for the design of WPF applications
<li>Why new UI technologies &#8211; limitations of older technologies like GDI
<li>XAML &#8211; Declarative language for WPF interface layout
<li><a href="http://silverlight.net" target="_blank">Silverlight</a> is basically WPF for the web
<li><a href="http://silverlight.net" target="_blank">Silverlight</a> vs WPF &#8211; <a href="http://silverlight.net" target="_blank">Silverlight</a> is cross-platform</li>
</ul>
<p>&nbsp;</p>
<p>Markus also gave an overview of Surface and showed a couple of quick videos showing how it works.&nbsp; </p>
<ul>
<li><a href="http://www.youtube.com/watch?v=Cog8b8ojji0" target="_blank">Microsoft Surface</a>
<li><a href="http://www.youtube.com/watch?v=CZrr7AZ9nCY" target="_blank">Microsoft Surface &#8211; Parody</a></li>
</ul>
<p>In closing, it was a successful meeting and has great promise of becoming a great addition to the existing groups here in Houston.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rtipton.wordpress.com/815/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rtipton.wordpress.com/815/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rtipton.wordpress.com/815/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rtipton.wordpress.com/815/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/rtipton.wordpress.com/815/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/rtipton.wordpress.com/815/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/rtipton.wordpress.com/815/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/rtipton.wordpress.com/815/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rtipton.wordpress.com/815/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rtipton.wordpress.com/815/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rtipton.wordpress.com/815/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rtipton.wordpress.com/815/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rtipton.wordpress.com/815/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rtipton.wordpress.com/815/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rhondatipton.net&#038;blog=148560&#038;post=815&#038;subd=rtipton&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rhondatipton.net/2008/11/08/houston-d2-sig-meeting-110608-recap/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/522aa96ec9478f99474af8ecab1c6247?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">RTipton</media:title>
		</media:content>

		<media:content url="http://farm4.static.flickr.com/3174/3010539316_48ebddd316.jpg?v=0" medium="image" />

		<media:content url="http://farm3.static.flickr.com/2001/2658548816_90e4db967d.jpg?v=0" medium="image" />

		<media:content url="http://farm4.static.flickr.com/3031/3009714557_70e1ee046a.jpg?v=0" medium="image" />
	</item>
		<item>
		<title>Inaugural Houston-Area D2 SIG Meeting for Silverlight &amp; WPF Designers and Developers Announced</title>
		<link>http://rhondatipton.net/2008/11/01/inaugural-houston-area-d2-sig-meeting-for-silverlight-wpf-designers-and-developers-announced/</link>
		<comments>http://rhondatipton.net/2008/11/01/inaugural-houston-area-d2-sig-meeting-for-silverlight-wpf-designers-and-developers-announced/#comments</comments>
		<pubDate>Sat, 01 Nov 2008 22:55:36 +0000</pubDate>
		<dc:creator>Rhonda</dc:creator>
				<category><![CDATA[Community]]></category>
		<category><![CDATA[WPF]]></category>
		<category><![CDATA[XAML]]></category>

		<guid isPermaLink="false">http://rtipton.wordpress.com/2008/11/01/inaugural-houston-area-d2-sig-meeting-for-silverlight-wpf-designers-and-developers-announced/</guid>
		<description><![CDATA[I received great news via e-mail of the new Houston-Area D2 Special Interest Group.&#160; The D2 SIG is geared toward Siverlight and WPF designers/developers.&#160; The information for the first meeting is below as well as a link to the future website. When:&#160;&#160; First Tuesday of Each Month 6:00 – 8:00 PM (First meeting is Thursday, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rhondatipton.net&#038;blog=148560&#038;post=806&#038;subd=rtipton&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I received great news via e-mail of the new Houston-Area D2 Special Interest Group.&nbsp; The D2 SIG is geared toward Siverlight and WPF designers/developers.&nbsp; The information for the first meeting is below as well as a link to the future website.</p>
<p><i><b>When:</b></i>&nbsp;&nbsp; First Tuesday of Each Month 6:00 – 8:00 PM (First meeting is Thursday, November 6, due to Election Day) <br /><i><b>Where:</b></i>&nbsp;&nbsp; Microsoft-Houston Offices (2000 West Sam Houston Parkway) <br />This special interest group (SIG) is a community effort open to all interested participants. Each month, a different presenter from various organizations will present to interested attendees. The group is dedicated to exploring modern user experiences (UX) which are part computer programming and part artistic design. While traditionally there has been little overlap in the two disciplines, users now expect a good experience with a professional look. Covered topics will range from development in Silverlight, WPF and related technologies such as Microsoft Surface to design of rich interactive experience for graphical designers. The group strives to provide a good balance of content that appeals to both developers and designers. <br />The inaugural meeting, <b>to be held on Nov. 6th, 2008</b> introduces the SIG and the covered topics and technologies in general, before proceeding into this month’s presentation delivered by industry renowned expert, author, speaker, MVP, President of EPS Software Corp., and Publisher of <i>CoDe Magazine</i>, <b>Markus Egger</b>. Markus’ presentation will include the following topics: </p>
<ul>
<li>Introduction to Silverlight ans WPF (Windows)
<li>Creating a Silverlight Application
<li>Silverlight and WPF news from PDC!
<li>A first look at Microsoft Surface </li>
</ul>
<p><b>RSVP Requested</b><br />Attendance of the SIG meetings is free. To allow us to plan the meetings better and to judge interest ahead of time, we ask people to <a href="http://www.vfpconversion.com/Eventsignup.aspx?id=7df7b0b1-3fff-4f8a-a603-43136123dd60">RSVP here</a>. <i>(Signup through VPF Conversion is temporary and will be replaced in the future with <a href="http://www.d2sig.org">www.d2sig.org</a>.)</i></p>
<p><b>Questions?</b><br />Phone: 832-717-4445 x 32 <br />E-Mail: <a href="mailto:info@d2sig.org">info@d2sig.org</a></p>
<p>&#8211;</p>
<p>Always learning.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rtipton.wordpress.com/806/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rtipton.wordpress.com/806/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rtipton.wordpress.com/806/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rtipton.wordpress.com/806/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/rtipton.wordpress.com/806/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/rtipton.wordpress.com/806/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/rtipton.wordpress.com/806/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/rtipton.wordpress.com/806/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rtipton.wordpress.com/806/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rtipton.wordpress.com/806/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rtipton.wordpress.com/806/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rtipton.wordpress.com/806/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rtipton.wordpress.com/806/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rtipton.wordpress.com/806/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rhondatipton.net&#038;blog=148560&#038;post=806&#038;subd=rtipton&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rhondatipton.net/2008/11/01/inaugural-houston-area-d2-sig-meeting-for-silverlight-wpf-designers-and-developers-announced/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/522aa96ec9478f99474af8ecab1c6247?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">RTipton</media:title>
		</media:content>
	</item>
		<item>
		<title>Great XAML Tool &#8211; XamlPadX</title>
		<link>http://rhondatipton.net/2008/09/07/great-xaml-tool-xamlpadx/</link>
		<comments>http://rhondatipton.net/2008/09/07/great-xaml-tool-xamlpadx/#comments</comments>
		<pubDate>Sun, 07 Sep 2008 20:40:57 +0000</pubDate>
		<dc:creator>Rhonda</dc:creator>
				<category><![CDATA[.NET General]]></category>
		<category><![CDATA[Reviews/Recommendations]]></category>
		<category><![CDATA[WPF]]></category>
		<category><![CDATA[XAML]]></category>

		<guid isPermaLink="false">http://rtipton.wordpress.com/2008/09/07/great-xaml-tool-xamlpadx/</guid>
		<description><![CDATA[XAML stands for Extensible Application Markup Language and is used extensively with Window Presentation Foundation (WPF) and Windows Workflow Foundation (WF).&#160; Lester Lobo has created a great tool for previewing XAML code called XamlPadX.&#160; I have not played with it too much, but what I have seen so far I like.&#160; If you are working [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rhondatipton.net&#038;blog=148560&#038;post=741&#038;subd=rtipton&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://en.wikipedia.org/wiki/Xaml" target="_blank">XAML</a> stands for E<strong>x</strong>tensible <strong>A</strong>pplication <strong>M</strong>arkup <strong>L</strong>anguage and is used extensively with <a href="http://msdn.microsoft.com/en-us/netframework/aa663326.aspx" target="_blank">Window Presentation Foundation</a> (<a href="http://msdn.microsoft.com/en-us/netframework/aa663326.aspx" target="_blank">WPF</a>) and <a href="http://msdn.microsoft.com/en-us/netframework/aa663328.aspx" target="_blank">Windows Workflow Foundation</a> (<a href="http://msdn.microsoft.com/en-us/netframework/aa663328.aspx" target="_blank">WF</a>).&#160; <a href="http://blogs.msdn.com/llobo" target="_blank">Lester Lobo</a> has created a great tool for previewing <a href="http://en.wikipedia.org/wiki/Xaml" target="_blank">XAML</a> code called <a href="http://blogs.msdn.com/llobo/archive/2008/08/25/xamlpadx-4-0.aspx" target="_blank">XamlPadX</a>.&#160; I have not played with it too much, but what I have seen so far I like.&#160; If you are working with <a href="http://en.wikipedia.org/wiki/Xaml" target="_blank">XAML</a> and don’t have the money to spend on <a href="http://www.microsoft.com/expression/products/Overview.aspx?key=blend" target="_blank">Expression Blend</a>, I recommend giving this tool a try.</p>
<p><a href="http://farm4.static.flickr.com/3194/2836705665_7044b3993f.jpg?v=0" target="_blank"><img height="180" src="http://farm4.static.flickr.com/3194/2836705665_7044b3993f.jpg?v=0" width="300" /></a> </p>
</p>
</p>
</p>
<p>It is easy to install.&#160; Simply take some <a href="http://en.wikipedia.org/wiki/Xaml" target="_blank">XAML</a> code and paste it in the application.&#160; You get immediate feedback.&#160; Very nice.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/rtipton.wordpress.com/741/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/rtipton.wordpress.com/741/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rtipton.wordpress.com/741/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rtipton.wordpress.com/741/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rtipton.wordpress.com/741/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rtipton.wordpress.com/741/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/rtipton.wordpress.com/741/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/rtipton.wordpress.com/741/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/rtipton.wordpress.com/741/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/rtipton.wordpress.com/741/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rtipton.wordpress.com/741/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rtipton.wordpress.com/741/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rtipton.wordpress.com/741/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rtipton.wordpress.com/741/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rtipton.wordpress.com/741/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rtipton.wordpress.com/741/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rhondatipton.net&#038;blog=148560&#038;post=741&#038;subd=rtipton&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rhondatipton.net/2008/09/07/great-xaml-tool-xamlpadx/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/522aa96ec9478f99474af8ecab1c6247?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">RTipton</media:title>
		</media:content>

		<media:content url="http://farm4.static.flickr.com/3194/2836705665_7044b3993f.jpg?v=0" medium="image" />
	</item>
	</channel>
</rss>
