<?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>Software and UX &#187; UX</title>
	<atom:link href="http://sweux.com/blogs/pombeiro/index.php/tag/ux/feed/" rel="self" type="application/rss+xml" />
	<link>http://sweux.com/blogs/pombeiro</link>
	<description>Thoughts and links on User Experience, Software Architecture</description>
	<lastBuildDate>Sat, 21 Aug 2010 21:36:05 +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>A Busy State Indicator attached behavior</title>
		<link>http://blog.pedropombeiro.com/2009/12/a-busy-state-indicator-attached-behavior/</link>
		<comments>http://blog.pedropombeiro.com/2009/12/a-busy-state-indicator-attached-behavior/#comments</comments>
		<pubDate>Tue, 01 Dec 2009 00:10:15 +0000</pubDate>
		<dc:creator>Pedro Pombeiro</dc:creator>
				<category><![CDATA[Scrum Sprint Monitor]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[behavior]]></category>
		<category><![CDATA[LinkedIn]]></category>
		<category><![CDATA[UX]]></category>
		<category><![CDATA[WPF]]></category>

		<guid isPermaLink="false">http://sweux.com/blogs/pombeiro/index.php/2009/12/01/a-busy-state-indicator-attached-behavior/</guid>
		<description><![CDATA[Today I decided to encapsulate the circular progress indicator I use in Scrum Sprint Monitor in a reusable behavior. This served as a learning experience as well, since I had not yet had the chance to play with attached behaviors. My requirements were the following: Have a behavior that displays an animation during long running [...]]]></description>
			<content:encoded><![CDATA[<p>Today I decided to encapsulate the circular progress indicator I use in Scrum Sprint Monitor in a reusable behavior. This served as a learning experience as well, since I had not yet had the chance to play with attached behaviors. My requirements were the following:</p>
<ul>
<li>Have a behavior that displays an animation during long running operations. It should dim out a defined region in the UI, optionally preventing input into that region. All state transitions must be animated. </li>
<li>Have minimal impact on the logical tree. </li>
<li>Allow configuration of parameters, such as dim brush, transition duration, etc. </li>
</ul>
<p>This problem turned out to be a perfect candidate to writing a behavior, and I needed only a few hours to crank it out. Here is a short video demoing it:</p>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:5737277B-5D6D-4f48-ABFC-DD9C333F4C5D:81f4b264-212a-4d74-8e8f-0af542851f8b" class="wlWriterSmartContent">
<div><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/1yhk2HZV8cc&amp;hl=en"></param><embed src="http://www.youtube.com/v/1yhk2HZV8cc&amp;hl=en" type="application/x-shockwave-flash" width="425" height="355"></embed></object></div>
</div>
<p>This behavior makes use of the simple and great Circular Progress Bar control by Sasha Barber, up on <a href="http://www.codeproject.com/Articles/35288/WPF-Circular-Progress-Bar.aspx" target="_blank">CodeProject</a>. You can easily replace the control used for the animation though, should you require a different one.</p>
<h3>Usage</h3>
<p>The behavior has a simple requirement, that it can only be attached to a Grid element (I believe that is a requirement that can easily be satisfied, in most projects). The only required property is the BusyState property, which tells the behavior when to do its work:</p>
<pre class="code"><span style="color: blue">&lt;</span><span style="color: #a31515">Grid </span><span style="color: red">DataContext</span><span style="color: blue">=&quot;{</span><span style="color: #a31515">Binding </span><span style="color: red">Path</span><span style="color: blue">=ConfigurationViewModel, </span><span style="color: red">Source</span><span style="color: blue">={</span><span style="color: #a31515">StaticResource </span><span style="color: red">serviceLocator</span><span style="color: blue">}}&quot;
      </span><span style="color: red">Behaviors</span><span style="color: blue">:</span><span style="color: red">BusyIndicatorBehavior.BusyState</span><span style="color: blue">=&quot;{</span><span style="color: #a31515">Binding </span><span style="color: red">IsBusy</span><span style="color: blue">}&quot;
      </span><span style="color: red">Behaviors</span><span style="color: blue">:</span><span style="color: red">BusyIndicatorBehavior.TargetVisual</span><span style="color: blue">=&quot;{</span><span style="color: #a31515">Binding </span><span style="color: red">RelativeSource</span><span style="color: blue">={</span><span style="color: #a31515">RelativeSource </span><span style="color: red">FindAncestor</span><span style="color: blue">, </span><span style="color: red">AncestorType</span><span style="color: blue">={</span><span style="color: #a31515">x</span><span style="color: blue">:</span><span style="color: #a31515">Type </span><span style="color: red">Grid</span><span style="color: blue">}}}&quot;&gt;</span></pre>
<p><a href="http://11011.net/software/vspaste"></a></p>
<p>The behavior works by adding a Visual Tree at runtime under the attached DependencyObject (the Grid). You connect your Busy state flag by providing a Binding to the BusyState attached property. There are a few other optional properties you can use, to customize things such as the dimming brush, the transition duration, margins, etc.</p>
<p>The source code is available for download from the <a href="http://gallery.expression.microsoft.com/BusyIndicator" target="_blank">Microsoft Expression Community Gallery</a>. Do leave some feedback if you have any suggestions, or if you just find it useful.</p>
<p>If you want to take a look at source code that uses this behavior, head to the <a href="http://scrumsprintmonitor.codeplex.com/SourceControl/ListDownloadableCommits.aspx" target="_blank">Scrum Sprint Monitor project at CodePlex</a>, and search for Behaviors:BusyIndicatorBehavior.</p>
<div class="wlWriterHeaderFooter" style="margin:0px; padding:0px 0px 0px 0px;">
<div class="shoutIt"><a rev="vote-for" href="http://dotnetshoutout.com/Submit?url=http%3a%2f%2fsweux.com%2fblogs%2fpombeiro%2findex.php%2f2009%2f12%2f01%2fa-busy-state-indicator-attached-behavior%2f&amp;title=A+Busy+State+Indicator+attached+behavior"><img alt="Shout it" src="http://dotnetshoutout.com/image.axd?url=http://sweux.com/blogs/pombeiro/index.php/2009/12/01/a-busy-state-indicator-attached-behavior/" style="border:0px" /></a></div>
</div>

<div class="sociable">
<div class="sociable_tagline">
<strong>Share and Enjoy:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fblog.pedropombeiro.com%2F2009%2F12%2Fa-busy-state-indicator-attached-behavior%2F&amp;title=A%20Busy%20State%20Indicator%20attached%20behavior&amp;bodytext=Today%20I%20decided%20to%20encapsulate%20the%20circular%20progress%20indicator%20I%20use%20in%20Scrum%20Sprint%20Monitor%20in%20a%20reusable%20behavior.%20This%20served%20as%20a%20learning%20experience%20as%20well%2C%20since%20I%20had%20not%20yet%20had%20the%20chance%20to%20play%20with%20attached%20behaviors.%20My%20requirements%20wer" title="Digg"><img src="http://sweux.com/blogs/pombeiro/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fblog.pedropombeiro.com%2F2009%2F12%2Fa-busy-state-indicator-attached-behavior%2F&amp;title=A%20Busy%20State%20Indicator%20attached%20behavior&amp;notes=Today%20I%20decided%20to%20encapsulate%20the%20circular%20progress%20indicator%20I%20use%20in%20Scrum%20Sprint%20Monitor%20in%20a%20reusable%20behavior.%20This%20served%20as%20a%20learning%20experience%20as%20well%2C%20since%20I%20had%20not%20yet%20had%20the%20chance%20to%20play%20with%20attached%20behaviors.%20My%20requirements%20wer" title="del.icio.us"><img src="http://sweux.com/blogs/pombeiro/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.dotnetkicks.com/kick/?url=http%3A%2F%2Fblog.pedropombeiro.com%2F2009%2F12%2Fa-busy-state-indicator-attached-behavior%2F&amp;title=A%20Busy%20State%20Indicator%20attached%20behavior" title="DotNetKicks"><img src="http://sweux.com/blogs/pombeiro/wp-content/plugins/sociable/images/dotnetkicks.png" title="DotNetKicks" alt="DotNetKicks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.dzone.com/links/add.html?url=http%3A%2F%2Fblog.pedropombeiro.com%2F2009%2F12%2Fa-busy-state-indicator-attached-behavior%2F&amp;title=A%20Busy%20State%20Indicator%20attached%20behavior" title="DZone"><img src="http://sweux.com/blogs/pombeiro/wp-content/plugins/sociable/images/dzone.png" title="DZone" alt="DZone" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://technorati.com/faves?add=http%3A%2F%2Fblog.pedropombeiro.com%2F2009%2F12%2Fa-busy-state-indicator-attached-behavior%2F" title="Technorati"><img src="http://sweux.com/blogs/pombeiro/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fblog.pedropombeiro.com%2F2009%2F12%2Fa-busy-state-indicator-attached-behavior%2F&amp;title=A%20Busy%20State%20Indicator%20attached%20behavior&amp;source=Software+and+UX+Thoughts+and+links+on+User+Experience%2C+Software+Architecture&amp;summary=Today%20I%20decided%20to%20encapsulate%20the%20circular%20progress%20indicator%20I%20use%20in%20Scrum%20Sprint%20Monitor%20in%20a%20reusable%20behavior.%20This%20served%20as%20a%20learning%20experience%20as%20well%2C%20since%20I%20had%20not%20yet%20had%20the%20chance%20to%20play%20with%20attached%20behaviors.%20My%20requirements%20wer" title="LinkedIn"><img src="http://sweux.com/blogs/pombeiro/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fblog.pedropombeiro.com%2F2009%2F12%2Fa-busy-state-indicator-attached-behavior%2F&amp;title=A%20Busy%20State%20Indicator%20attached%20behavior&amp;annotation=Today%20I%20decided%20to%20encapsulate%20the%20circular%20progress%20indicator%20I%20use%20in%20Scrum%20Sprint%20Monitor%20in%20a%20reusable%20behavior.%20This%20served%20as%20a%20learning%20experience%20as%20well%2C%20since%20I%20had%20not%20yet%20had%20the%20chance%20to%20play%20with%20attached%20behaviors.%20My%20requirements%20wer" title="Google Bookmarks"><img src="http://sweux.com/blogs/pombeiro/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fblog.pedropombeiro.com%2F2009%2F12%2Fa-busy-state-indicator-attached-behavior%2F&amp;title=A%20Busy%20State%20Indicator%20attached%20behavior" title="StumbleUpon"><img src="http://sweux.com/blogs/pombeiro/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="mailto:?subject=A%20Busy%20State%20Indicator%20attached%20behavior&amp;body=http%3A%2F%2Fblog.pedropombeiro.com%2F2009%2F12%2Fa-busy-state-indicator-attached-behavior%2F" title="email"><img src="http://sweux.com/blogs/pombeiro/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fblog.pedropombeiro.com%2F2009%2F12%2Fa-busy-state-indicator-attached-behavior%2F&amp;partner=sociable" title="Print"><img src="http://sweux.com/blogs/pombeiro/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://blog.pedropombeiro.com/2009/12/a-busy-state-indicator-attached-behavior/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Animated WPF Panels (animating collection views)</title>
		<link>http://blog.pedropombeiro.com/2009/08/animated-panels/</link>
		<comments>http://blog.pedropombeiro.com/2009/08/animated-panels/#comments</comments>
		<pubDate>Fri, 14 Aug 2009 17:01:00 +0000</pubDate>
		<dc:creator>Pedro Pombeiro</dc:creator>
				<category><![CDATA[Scrum Sprint Monitor]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[animation]]></category>
		<category><![CDATA[LinkedIn]]></category>
		<category><![CDATA[UX]]></category>
		<category><![CDATA[WPF]]></category>

		<guid isPermaLink="false">http://sweux.com/blogs/pombeiro/index.php/2009/08/14/animated-panels/</guid>
		<description><![CDATA[This article presents new classes that extend the stock WPF panel classes. They add animation behavior in response to changes in the bound collection (demo video included).]]></description>
			<content:encoded><![CDATA[<p><font color="#ff0000">UPDATE: The same functionality is now available out of the box using the Blend 3 SDK, through the FluidMoveBehavior. Just drag that behavior to your container panel, and set the Duration and AppliesTo properties! The only difference is that easing functions are not yet supported in WPF. We will need to wait until WPF 4 is released.</font></p>
<p>Last evening I finally implemented a long awaited feature (by me!) in the <a href="http://scrumsprintmonitor.codeplex.com/">Scrum Sprint Monitor</a>: animated WPF panels. As the team members in the Sprint move up and down the list (an <a href="http://msdn.microsoft.com/en-us/library/ms668604.aspx" target="_blank">ObservableCollection&lt;&gt;</a>), get added or removed, I always wished that change could be animated. My current knowledge of the WPF layout mechanism wasn’t sufficient to finish on that endeavor within a few hours, though.</p>
<p>I finally found a <a href="http://codeblitz.wordpress.com/2009/03/20/wpf-auto-arrange-animated-panel/" target="_blank">blog post</a> that set me on the right path, on Ed Foh’s blog. Ed in turn was inspired by Kevin Moore’s <a title="WPF Bag of Tricks" href="http://j832.com/bagotricks/">WPF Bag of Tricks</a>, which also includes an Animating Tile Panel.</p>
<p>Here is a video demonstrating the enhanced behavior of my <a href="http://scrumsprintmonitor.codeplex.com/sourcecontrol/changeset/view/26878?projectName=scrumsprintmonitor#646994" target="_blank">AnimatedUniformGrid</a>:</p>
<div style="padding-bottom: 15px; margin: 0px; padding-left: 0px; width: 599px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:5737277B-5D6D-4f48-ABFC-DD9C333F4C5D:d33a49e7-f3b9-49c7-9cae-7414480784db" class="wlWriterSmartContent">
<div><embed height="355" type="application/x-shockwave-flash" width="425" src="http://www.youtube.com/v/raikaobT0WQ&amp;hl=en" /> </div>
<div style="clear: both; font-size: 0.8em">An AnimatedUniformGrid in action</div>
</p></div>
<h3>Why those two solutions didn’t work for me</h3>
<p>Both of the aforementioned solutions contained hardwired positioning logic, though. I simply needed to add the animation behavior to <a href="http://msdn.microsoft.com/en-us/library/system.windows.controls.stackpanel.aspx" target="_blank">StackPanel</a>, <a href="http://msdn.microsoft.com/en-us/library/system.windows.controls.wrappanel.aspx" target="_blank">WrapPanel</a> and <a href="http://msdn.microsoft.com/en-us/library/system.windows.controls.primitives.uniformgrid.aspx" target="_blank">UniformGrid</a>, not a completely custom panel. Ideally, the solution would be a behavior that could be added on top of those containers. That particular aspect wasn’t realized, and I ended up deriving classes for each of these panels, prefixing the new classes with “Animated”. It is still a pretty acceptable solution. <font color="#ff0000">UPDATE: I eventually found this was the same approach taken by at least one commercial offer.</font></p>
<p>The following is the code required to instantiate the uniform grid (note how you simple need to prefix the panel class with Wpf:Animated):</p>
<pre class="code"><span style="color: blue">&lt;</span><span style="color: #a31515">ItemsControl </span><span style="color: red">ItemsSource</span><span style="color: blue">=&quot;{</span><span style="color: #a31515">Binding </span><span style="color: red">TeamMembersIncludingUnassigned</span><span style="color: blue">}&quot;</span><span style="color: blue">&gt;
    &lt;</span><span style="color: #a31515">ItemsControl.ItemsPanel</span><span style="color: blue">&gt;
      &lt;</span><span style="color: #a31515">ItemsPanelTemplate</span><span style="color: blue">&gt;
         &lt;</span><span style="color: #a31515">Wpf</span><span style="color: blue">:</span><span style="color: #a31515">AnimatedUniformGrid </span><span style="color: red">Duration</span><span style="color: blue">=&quot;00:00:01&quot; /&gt;
      &lt;/</span><span style="color: #a31515">ItemsPanelTemplate</span><span style="color: blue">&gt;
   &lt;/</span><span style="color: #a31515">ItemsControl.ItemsPanel</span><span style="color: blue">&gt;
&lt;/</span><span style="color: #a31515">ItemsControl</span><span style="color: blue">&gt;
</span></pre>
<p><a href="http://11011.net/software/vspaste"></a></p>
<h3>&#160;</h3>
<h3>Adding animation to an existing panel control class</h3>
<p>The workflow for converting an existing Panel to an AnimatedPanel is pretty easy:</p>
<ol>
<li>derive a new class from the desired panel class (prefix it with Animated); </li>
<li>override the ArrangeOverride method in the new class (don’t call the base class implementation); </li>
<li>using <a href="http://www.red-gate.com/products/reflector/">.NET Reflector</a>, extract the ArrangeOverride method contents from the base class implementation, and simply substitute the element.Arrange call that is performed for each child for a call to the <a href="http://scrumsprintmonitor.codeplex.com/sourcecontrol/changeset/view/26878?projectName=scrumsprintmonitor#646992" target="_blank">AnimatedPanelHelper</a>.ArrangeChild() static method. </li>
</ol>
<p>That is all you need to do!</p>
<h3>Acknowledgements</h3>
<p>Thanks to Ed Foh and Kevin Moore for their great work.</p>
<p>Download the source code <a href="http://blogs.sweux.com/pombeiro/wp-content/uploads/2009/08/AnimatedPanels.zip">here</a>.</p>
<div><a href="http://dotnetshoutout.com/Animated-WPF-Panels-Software-and-UX" rev="vote-for"><img style="border-right-width: 0px; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" alt="Shout it" src="http://dotnetshoutout.com/image.axd?url=http%3A%2F%2Fsweux.com%2Fblogs%2Fpombeiro%2Findex.php%2F2009%2F08%2F14%2Fanimated-panels%2F" /></a></div>
<div>&#160;</div>
<div><a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fsweux.com%2fblogs%2fpombeiro%2findex.php%2f2009%2f08%2f14%2fanimated-panels%2f"><img border="0" alt="kick it on DotNetKicks.com" src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fsweux.com%2fblogs%2fpombeiro%2findex.php%2f2009%2f08%2f14%2fanimated-panels%2f&amp;bgcolor=FF6633" /></a></div>

<div class="sociable">
<div class="sociable_tagline">
<strong>Share and Enjoy:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fblog.pedropombeiro.com%2F2009%2F08%2Fanimated-panels%2F&amp;title=Animated%20WPF%20Panels%20%28animating%20collection%20views%29&amp;bodytext=This%20article%20presents%20new%20classes%20that%20extend%20the%20stock%20WPF%20panel%20classes.%20They%20add%20animation%20behavior%20in%20response%20to%20changes%20in%20the%20bound%20collection%20%28demo%20video%20included%29." title="Digg"><img src="http://sweux.com/blogs/pombeiro/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fblog.pedropombeiro.com%2F2009%2F08%2Fanimated-panels%2F&amp;title=Animated%20WPF%20Panels%20%28animating%20collection%20views%29&amp;notes=This%20article%20presents%20new%20classes%20that%20extend%20the%20stock%20WPF%20panel%20classes.%20They%20add%20animation%20behavior%20in%20response%20to%20changes%20in%20the%20bound%20collection%20%28demo%20video%20included%29." title="del.icio.us"><img src="http://sweux.com/blogs/pombeiro/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.dotnetkicks.com/kick/?url=http%3A%2F%2Fblog.pedropombeiro.com%2F2009%2F08%2Fanimated-panels%2F&amp;title=Animated%20WPF%20Panels%20%28animating%20collection%20views%29" title="DotNetKicks"><img src="http://sweux.com/blogs/pombeiro/wp-content/plugins/sociable/images/dotnetkicks.png" title="DotNetKicks" alt="DotNetKicks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.dzone.com/links/add.html?url=http%3A%2F%2Fblog.pedropombeiro.com%2F2009%2F08%2Fanimated-panels%2F&amp;title=Animated%20WPF%20Panels%20%28animating%20collection%20views%29" title="DZone"><img src="http://sweux.com/blogs/pombeiro/wp-content/plugins/sociable/images/dzone.png" title="DZone" alt="DZone" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://technorati.com/faves?add=http%3A%2F%2Fblog.pedropombeiro.com%2F2009%2F08%2Fanimated-panels%2F" title="Technorati"><img src="http://sweux.com/blogs/pombeiro/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fblog.pedropombeiro.com%2F2009%2F08%2Fanimated-panels%2F&amp;title=Animated%20WPF%20Panels%20%28animating%20collection%20views%29&amp;source=Software+and+UX+Thoughts+and+links+on+User+Experience%2C+Software+Architecture&amp;summary=This%20article%20presents%20new%20classes%20that%20extend%20the%20stock%20WPF%20panel%20classes.%20They%20add%20animation%20behavior%20in%20response%20to%20changes%20in%20the%20bound%20collection%20%28demo%20video%20included%29." title="LinkedIn"><img src="http://sweux.com/blogs/pombeiro/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fblog.pedropombeiro.com%2F2009%2F08%2Fanimated-panels%2F&amp;title=Animated%20WPF%20Panels%20%28animating%20collection%20views%29&amp;annotation=This%20article%20presents%20new%20classes%20that%20extend%20the%20stock%20WPF%20panel%20classes.%20They%20add%20animation%20behavior%20in%20response%20to%20changes%20in%20the%20bound%20collection%20%28demo%20video%20included%29." title="Google Bookmarks"><img src="http://sweux.com/blogs/pombeiro/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fblog.pedropombeiro.com%2F2009%2F08%2Fanimated-panels%2F&amp;title=Animated%20WPF%20Panels%20%28animating%20collection%20views%29" title="StumbleUpon"><img src="http://sweux.com/blogs/pombeiro/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="mailto:?subject=Animated%20WPF%20Panels%20%28animating%20collection%20views%29&amp;body=http%3A%2F%2Fblog.pedropombeiro.com%2F2009%2F08%2Fanimated-panels%2F" title="email"><img src="http://sweux.com/blogs/pombeiro/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fblog.pedropombeiro.com%2F2009%2F08%2Fanimated-panels%2F&amp;partner=sociable" title="Print"><img src="http://sweux.com/blogs/pombeiro/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://blog.pedropombeiro.com/2009/08/animated-panels/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Microsoft Expression Newsletter</title>
		<link>http://sweux.com/blogs/pombeiro/index.php/2009/01/28/microsoft-expression-newsletter/</link>
		<comments>http://sweux.com/blogs/pombeiro/index.php/2009/01/28/microsoft-expression-newsletter/#comments</comments>
		<pubDate>Wed, 28 Jan 2009 22:00:00 +0000</pubDate>
		<dc:creator>Pedro Pombeiro</dc:creator>
				<category><![CDATA[Links]]></category>
		<category><![CDATA[Expression]]></category>
		<category><![CDATA[UX]]></category>

		<guid isPermaLink="false">http://sweux.com/blogs/pombeiro/index.php/2009/01/28/microsoft-expression-newsletter/</guid>
		<description><![CDATA[Conchango&#8217;s Richard Griffin recently blogged about the Microsoft Expression Newsletter. This seems to be an interesting resource for UX professionals. A few articles that caught my eye: Saving time: UX Prototyping in Expression Blend Expression Product Tips Feed Creating Visual Transitions in Expression Blend Technorati Tags: UX,Microsoft Expression Share and Enjoy:]]></description>
			<content:encoded><![CDATA[<p>Conchango&#8217;s <a href="http://blogs.conchango.com/richardgriffin/default.aspx">Richard Griffin</a> recently blogged about the <a title="http://expression.microsoft.com/en-us/dd419682.aspx" href="http://expression.microsoft.com/en-us/dd419682.aspx">Microsoft Expression Newsletter</a>. This seems to be an interesting resource for UX professionals. A few articles that caught my eye:</p>
<ul>
<li><a href="http://expression.microsoft.com/en-us/dd279539.aspx" target="_blank">Saving time: UX Prototyping in Expression Blend</a> </li>
<li><a title="Expression Product Tips" href="http://services.social.microsoft.com/feeds/feed/ExpressionProductTips" target="_blank">Expression Product Tips Feed</a> </li>
<li><a href="http://expression.microsoft.com/en-us/cc950441.aspx" target="_blank">Creating Visual Transitions in Expression Blend</a> </li>
</ul>
<div class="wlWriterEditableSmartContent" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:35cb1892-5b64-4200-8d7b-43167e8445ed" style="padding-right: 0px; display: inline; padding-left: 0px; float: none; padding-bottom: 0px; margin: 0px; padding-top: 0px">Technorati Tags: <a href="http://technorati.com/tags/UX" rel="tag">UX</a>,<a href="http://technorati.com/tags/Microsoft+Expression" rel="tag">Microsoft Expression</a></div>

<div class="sociable">
<div class="sociable_tagline">
<strong>Share and Enjoy:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fsweux.com%2Fblogs%2Fpombeiro%2Findex.php%2F2009%2F01%2F28%2Fmicrosoft-expression-newsletter%2F&amp;title=Microsoft%20Expression%20Newsletter&amp;bodytext=Conchango%27s%20Richard%20Griffin%20recently%20blogged%20about%20the%20Microsoft%20Expression%20Newsletter.%20This%20seems%20to%20be%20an%20interesting%20resource%20for%20UX%20professionals.%20A%20few%20articles%20that%20caught%20my%20eye%3A%20%20%20%20%20Saving%20time%3A%20UX%20Prototyping%20in%20Expression%20Blend%20%20%20%20%20Expressi" title="Digg"><img src="http://sweux.com/blogs/pombeiro/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fsweux.com%2Fblogs%2Fpombeiro%2Findex.php%2F2009%2F01%2F28%2Fmicrosoft-expression-newsletter%2F&amp;title=Microsoft%20Expression%20Newsletter&amp;notes=Conchango%27s%20Richard%20Griffin%20recently%20blogged%20about%20the%20Microsoft%20Expression%20Newsletter.%20This%20seems%20to%20be%20an%20interesting%20resource%20for%20UX%20professionals.%20A%20few%20articles%20that%20caught%20my%20eye%3A%20%20%20%20%20Saving%20time%3A%20UX%20Prototyping%20in%20Expression%20Blend%20%20%20%20%20Expressi" title="del.icio.us"><img src="http://sweux.com/blogs/pombeiro/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.dotnetkicks.com/kick/?url=http%3A%2F%2Fsweux.com%2Fblogs%2Fpombeiro%2Findex.php%2F2009%2F01%2F28%2Fmicrosoft-expression-newsletter%2F&amp;title=Microsoft%20Expression%20Newsletter" title="DotNetKicks"><img src="http://sweux.com/blogs/pombeiro/wp-content/plugins/sociable/images/dotnetkicks.png" title="DotNetKicks" alt="DotNetKicks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.dzone.com/links/add.html?url=http%3A%2F%2Fsweux.com%2Fblogs%2Fpombeiro%2Findex.php%2F2009%2F01%2F28%2Fmicrosoft-expression-newsletter%2F&amp;title=Microsoft%20Expression%20Newsletter" title="DZone"><img src="http://sweux.com/blogs/pombeiro/wp-content/plugins/sociable/images/dzone.png" title="DZone" alt="DZone" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://technorati.com/faves?add=http%3A%2F%2Fsweux.com%2Fblogs%2Fpombeiro%2Findex.php%2F2009%2F01%2F28%2Fmicrosoft-expression-newsletter%2F" title="Technorati"><img src="http://sweux.com/blogs/pombeiro/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fsweux.com%2Fblogs%2Fpombeiro%2Findex.php%2F2009%2F01%2F28%2Fmicrosoft-expression-newsletter%2F&amp;title=Microsoft%20Expression%20Newsletter&amp;source=Software+and+UX+Thoughts+and+links+on+User+Experience%2C+Software+Architecture&amp;summary=Conchango%27s%20Richard%20Griffin%20recently%20blogged%20about%20the%20Microsoft%20Expression%20Newsletter.%20This%20seems%20to%20be%20an%20interesting%20resource%20for%20UX%20professionals.%20A%20few%20articles%20that%20caught%20my%20eye%3A%20%20%20%20%20Saving%20time%3A%20UX%20Prototyping%20in%20Expression%20Blend%20%20%20%20%20Expressi" title="LinkedIn"><img src="http://sweux.com/blogs/pombeiro/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fsweux.com%2Fblogs%2Fpombeiro%2Findex.php%2F2009%2F01%2F28%2Fmicrosoft-expression-newsletter%2F&amp;title=Microsoft%20Expression%20Newsletter&amp;annotation=Conchango%27s%20Richard%20Griffin%20recently%20blogged%20about%20the%20Microsoft%20Expression%20Newsletter.%20This%20seems%20to%20be%20an%20interesting%20resource%20for%20UX%20professionals.%20A%20few%20articles%20that%20caught%20my%20eye%3A%20%20%20%20%20Saving%20time%3A%20UX%20Prototyping%20in%20Expression%20Blend%20%20%20%20%20Expressi" title="Google Bookmarks"><img src="http://sweux.com/blogs/pombeiro/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fsweux.com%2Fblogs%2Fpombeiro%2Findex.php%2F2009%2F01%2F28%2Fmicrosoft-expression-newsletter%2F&amp;title=Microsoft%20Expression%20Newsletter" title="StumbleUpon"><img src="http://sweux.com/blogs/pombeiro/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="mailto:?subject=Microsoft%20Expression%20Newsletter&amp;body=http%3A%2F%2Fsweux.com%2Fblogs%2Fpombeiro%2Findex.php%2F2009%2F01%2F28%2Fmicrosoft-expression-newsletter%2F" title="email"><img src="http://sweux.com/blogs/pombeiro/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fsweux.com%2Fblogs%2Fpombeiro%2Findex.php%2F2009%2F01%2F28%2Fmicrosoft-expression-newsletter%2F&amp;partner=sociable" title="Print"><img src="http://sweux.com/blogs/pombeiro/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://sweux.com/blogs/pombeiro/index.php/2009/01/28/microsoft-expression-newsletter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>10 Most Common Misconceptions About User Experience Design</title>
		<link>http://blog.pedropombeiro.com/2009/01/10-most-common-misconceptions-about-user-experience-design/</link>
		<comments>http://blog.pedropombeiro.com/2009/01/10-most-common-misconceptions-about-user-experience-design/#comments</comments>
		<pubDate>Mon, 12 Jan 2009 14:16:00 +0000</pubDate>
		<dc:creator>Pedro Pombeiro</dc:creator>
				<category><![CDATA[Links]]></category>
		<category><![CDATA[LinkedIn]]></category>
		<category><![CDATA[UX]]></category>

		<guid isPermaLink="false">http://sweux.com/blogs/pombeiro/index.php/uncategorized/2009/01/12/10-most-common-misconceptions-about-user-experience-design/</guid>
		<description><![CDATA[Whitney Hess wrote a nice article about what UX is not. Have a peek at http://mashable.com/2009/01/09/user-experience-design/. Share and Enjoy:]]></description>
			<content:encoded><![CDATA[<p><a href="http://twitter.com/whitneyhess">Whitney Hess</a> wrote a nice article about what UX is not. Have a peek at <a href="http://mashable.com/2009/01/09/user-experience-design/">http://mashable.com/2009/01/09/user-experience-design/.</a></p>

<div class="sociable">
<div class="sociable_tagline">
<strong>Share and Enjoy:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fblog.pedropombeiro.com%2F2009%2F01%2F10-most-common-misconceptions-about-user-experience-design%2F&amp;title=10%20Most%20Common%20Misconceptions%20About%20User%20Experience%20Design&amp;bodytext=Whitney%20Hess%20wrote%20a%20nice%20article%20about%20what%20UX%20is%20not.%20Have%20a%20peek%20at%20http%3A%2F%2Fmashable.com%2F2009%2F01%2F09%2Fuser-experience-design%2F." title="Digg"><img src="http://sweux.com/blogs/pombeiro/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fblog.pedropombeiro.com%2F2009%2F01%2F10-most-common-misconceptions-about-user-experience-design%2F&amp;title=10%20Most%20Common%20Misconceptions%20About%20User%20Experience%20Design&amp;notes=Whitney%20Hess%20wrote%20a%20nice%20article%20about%20what%20UX%20is%20not.%20Have%20a%20peek%20at%20http%3A%2F%2Fmashable.com%2F2009%2F01%2F09%2Fuser-experience-design%2F." title="del.icio.us"><img src="http://sweux.com/blogs/pombeiro/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.dotnetkicks.com/kick/?url=http%3A%2F%2Fblog.pedropombeiro.com%2F2009%2F01%2F10-most-common-misconceptions-about-user-experience-design%2F&amp;title=10%20Most%20Common%20Misconceptions%20About%20User%20Experience%20Design" title="DotNetKicks"><img src="http://sweux.com/blogs/pombeiro/wp-content/plugins/sociable/images/dotnetkicks.png" title="DotNetKicks" alt="DotNetKicks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.dzone.com/links/add.html?url=http%3A%2F%2Fblog.pedropombeiro.com%2F2009%2F01%2F10-most-common-misconceptions-about-user-experience-design%2F&amp;title=10%20Most%20Common%20Misconceptions%20About%20User%20Experience%20Design" title="DZone"><img src="http://sweux.com/blogs/pombeiro/wp-content/plugins/sociable/images/dzone.png" title="DZone" alt="DZone" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://technorati.com/faves?add=http%3A%2F%2Fblog.pedropombeiro.com%2F2009%2F01%2F10-most-common-misconceptions-about-user-experience-design%2F" title="Technorati"><img src="http://sweux.com/blogs/pombeiro/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fblog.pedropombeiro.com%2F2009%2F01%2F10-most-common-misconceptions-about-user-experience-design%2F&amp;title=10%20Most%20Common%20Misconceptions%20About%20User%20Experience%20Design&amp;source=Software+and+UX+Thoughts+and+links+on+User+Experience%2C+Software+Architecture&amp;summary=Whitney%20Hess%20wrote%20a%20nice%20article%20about%20what%20UX%20is%20not.%20Have%20a%20peek%20at%20http%3A%2F%2Fmashable.com%2F2009%2F01%2F09%2Fuser-experience-design%2F." title="LinkedIn"><img src="http://sweux.com/blogs/pombeiro/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fblog.pedropombeiro.com%2F2009%2F01%2F10-most-common-misconceptions-about-user-experience-design%2F&amp;title=10%20Most%20Common%20Misconceptions%20About%20User%20Experience%20Design&amp;annotation=Whitney%20Hess%20wrote%20a%20nice%20article%20about%20what%20UX%20is%20not.%20Have%20a%20peek%20at%20http%3A%2F%2Fmashable.com%2F2009%2F01%2F09%2Fuser-experience-design%2F." title="Google Bookmarks"><img src="http://sweux.com/blogs/pombeiro/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fblog.pedropombeiro.com%2F2009%2F01%2F10-most-common-misconceptions-about-user-experience-design%2F&amp;title=10%20Most%20Common%20Misconceptions%20About%20User%20Experience%20Design" title="StumbleUpon"><img src="http://sweux.com/blogs/pombeiro/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="mailto:?subject=10%20Most%20Common%20Misconceptions%20About%20User%20Experience%20Design&amp;body=http%3A%2F%2Fblog.pedropombeiro.com%2F2009%2F01%2F10-most-common-misconceptions-about-user-experience-design%2F" title="email"><img src="http://sweux.com/blogs/pombeiro/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fblog.pedropombeiro.com%2F2009%2F01%2F10-most-common-misconceptions-about-user-experience-design%2F&amp;partner=sociable" title="Print"><img src="http://sweux.com/blogs/pombeiro/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://blog.pedropombeiro.com/2009/01/10-most-common-misconceptions-about-user-experience-design/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Objectified documentary</title>
		<link>http://sweux.com/blogs/pombeiro/index.php/2009/01/06/objectified-documentary/</link>
		<comments>http://sweux.com/blogs/pombeiro/index.php/2009/01/06/objectified-documentary/#comments</comments>
		<pubDate>Tue, 06 Jan 2009 14:16:00 +0000</pubDate>
		<dc:creator>Pedro Pombeiro</dc:creator>
				<category><![CDATA[Links]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[LinkedIn]]></category>
		<category><![CDATA[UX]]></category>

		<guid isPermaLink="false">http://sweux.com/blogs/pombeiro/index.php/uncategorized/2009/01/06/objectified-documentary/</guid>
		<description><![CDATA[A very interesting documentary is due out in March. From the author: “Objectified is a documentary about industrial design; it’s about the manufactured objects we surround ourselves with, and the people who make them. On an average day, each of us uses hundreds of objects. (Don’t believe it? Start counting: alarm clock, light switch, faucet, [...]]]></description>
			<content:encoded><![CDATA[<p>A very interesting documentary is due out in March. From the author:</p>
<p><em>“Objectified is a documentary about industrial design; it’s about the manufactured objects we surround ourselves with, and the people who make them. On an average day, each of us uses hundreds of objects. (Don’t believe it? Start counting: alarm clock, light switch, faucet, shampoo bottle, toothbrush, razor…) Who makes all these things, and why do they look and feel the way they do? All of these objects are “designed,” but how can good design make them, and our lives, better?      <br />One reason that I’m delving into the world of objects in this film is that I, admittedly, am obsessed by them. Why do I salivate over a shiny new piece of technology, or obsess over a 50-year-old plywood chair? What does all the stuff I accumulate say about me, and do I really need any of it in the first place?”       <br /></em>    <br />You can watch the trailer at <a href="http://www.youtube.com/watch?v=S9E2D2PaIcI">http://www.youtube.com/watch?v=S9E2D2PaIcI</a>.</p>

<div class="sociable">
<div class="sociable_tagline">
<strong>Share and Enjoy:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fsweux.com%2Fblogs%2Fpombeiro%2Findex.php%2F2009%2F01%2F06%2Fobjectified-documentary%2F&amp;title=Objectified%20documentary&amp;bodytext=A%20very%20interesting%20documentary%20is%20due%20out%20in%20March.%20From%20the%20author%3A%20%20%E2%80%9CObjectified%20is%20a%20documentary%20about%20industrial%20design%3B%20it%E2%80%99s%20about%20the%20manufactured%20objects%20we%20surround%20ourselves%20with%2C%20and%20the%20people%20who%20make%20them.%20On%20an%20average%20day%2C%20each%20of%20" title="Digg"><img src="http://sweux.com/blogs/pombeiro/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fsweux.com%2Fblogs%2Fpombeiro%2Findex.php%2F2009%2F01%2F06%2Fobjectified-documentary%2F&amp;title=Objectified%20documentary&amp;notes=A%20very%20interesting%20documentary%20is%20due%20out%20in%20March.%20From%20the%20author%3A%20%20%E2%80%9CObjectified%20is%20a%20documentary%20about%20industrial%20design%3B%20it%E2%80%99s%20about%20the%20manufactured%20objects%20we%20surround%20ourselves%20with%2C%20and%20the%20people%20who%20make%20them.%20On%20an%20average%20day%2C%20each%20of%20" title="del.icio.us"><img src="http://sweux.com/blogs/pombeiro/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.dotnetkicks.com/kick/?url=http%3A%2F%2Fsweux.com%2Fblogs%2Fpombeiro%2Findex.php%2F2009%2F01%2F06%2Fobjectified-documentary%2F&amp;title=Objectified%20documentary" title="DotNetKicks"><img src="http://sweux.com/blogs/pombeiro/wp-content/plugins/sociable/images/dotnetkicks.png" title="DotNetKicks" alt="DotNetKicks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.dzone.com/links/add.html?url=http%3A%2F%2Fsweux.com%2Fblogs%2Fpombeiro%2Findex.php%2F2009%2F01%2F06%2Fobjectified-documentary%2F&amp;title=Objectified%20documentary" title="DZone"><img src="http://sweux.com/blogs/pombeiro/wp-content/plugins/sociable/images/dzone.png" title="DZone" alt="DZone" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://technorati.com/faves?add=http%3A%2F%2Fsweux.com%2Fblogs%2Fpombeiro%2Findex.php%2F2009%2F01%2F06%2Fobjectified-documentary%2F" title="Technorati"><img src="http://sweux.com/blogs/pombeiro/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fsweux.com%2Fblogs%2Fpombeiro%2Findex.php%2F2009%2F01%2F06%2Fobjectified-documentary%2F&amp;title=Objectified%20documentary&amp;source=Software+and+UX+Thoughts+and+links+on+User+Experience%2C+Software+Architecture&amp;summary=A%20very%20interesting%20documentary%20is%20due%20out%20in%20March.%20From%20the%20author%3A%20%20%E2%80%9CObjectified%20is%20a%20documentary%20about%20industrial%20design%3B%20it%E2%80%99s%20about%20the%20manufactured%20objects%20we%20surround%20ourselves%20with%2C%20and%20the%20people%20who%20make%20them.%20On%20an%20average%20day%2C%20each%20of%20" title="LinkedIn"><img src="http://sweux.com/blogs/pombeiro/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fsweux.com%2Fblogs%2Fpombeiro%2Findex.php%2F2009%2F01%2F06%2Fobjectified-documentary%2F&amp;title=Objectified%20documentary&amp;annotation=A%20very%20interesting%20documentary%20is%20due%20out%20in%20March.%20From%20the%20author%3A%20%20%E2%80%9CObjectified%20is%20a%20documentary%20about%20industrial%20design%3B%20it%E2%80%99s%20about%20the%20manufactured%20objects%20we%20surround%20ourselves%20with%2C%20and%20the%20people%20who%20make%20them.%20On%20an%20average%20day%2C%20each%20of%20" title="Google Bookmarks"><img src="http://sweux.com/blogs/pombeiro/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fsweux.com%2Fblogs%2Fpombeiro%2Findex.php%2F2009%2F01%2F06%2Fobjectified-documentary%2F&amp;title=Objectified%20documentary" title="StumbleUpon"><img src="http://sweux.com/blogs/pombeiro/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="mailto:?subject=Objectified%20documentary&amp;body=http%3A%2F%2Fsweux.com%2Fblogs%2Fpombeiro%2Findex.php%2F2009%2F01%2F06%2Fobjectified-documentary%2F" title="email"><img src="http://sweux.com/blogs/pombeiro/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fsweux.com%2Fblogs%2Fpombeiro%2Findex.php%2F2009%2F01%2F06%2Fobjectified-documentary%2F&amp;partner=sociable" title="Print"><img src="http://sweux.com/blogs/pombeiro/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://sweux.com/blogs/pombeiro/index.php/2009/01/06/objectified-documentary/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
