<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments for scorbs</title>
	<atom:link href="http://scorbs.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://scorbs.com</link>
	<description></description>
	<pubDate>Thu, 07 Aug 2008 20:10:23 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
		<item>
		<title>Comment on Origami by Cheryl</title>
		<link>http://scorbs.com/2008/08/03/origami#comment-45348</link>
		<dc:creator>Cheryl</dc:creator>
		<pubDate>Tue, 05 Aug 2008 19:47:33 +0000</pubDate>
		<guid isPermaLink="false">http://scorbs.com/2008/08/03/origami#comment-45348</guid>
		<description>Karen...I browsed here to review your Silverlight networking posts again and ended up reading some of your other posts..I watched Benjamin Zander's TED talk awhile back and loved it. So much I ordered his book. I haven't cracked it yet, but maybe I'll get to it on vacation...sigh.</description>
		<content:encoded><![CDATA[<p>Karen&#8230;I browsed here to review your Silverlight networking posts again and ended up reading some of your other posts..I watched Benjamin Zander&#8217;s TED talk awhile back and loved it. So much I ordered his book. I haven&#8217;t cracked it yet, but maybe I&#8217;ll get to it on vacation&#8230;sigh.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Movie Trailer:  Harry Potter and the Half Blood Prince by Joel Peterson</title>
		<link>http://scorbs.com/2008/08/01/movie-trailer-harry-potter-and-the-half-blood-prince#comment-44663</link>
		<dc:creator>Joel Peterson</dc:creator>
		<pubDate>Sat, 02 Aug 2008 01:37:23 +0000</pubDate>
		<guid isPermaLink="false">http://scorbs.com/2008/08/01/movie-trailer-harry-potter-and-the-half-blood-prince/#comment-44663</guid>
		<description>HD versions: http://www.moviefone.com/movie/harry-potter-and-the-half-blood-prince/27063/main

Personally, I can't freaking wait. I'm glad its in the winter this year. I've always thought it way more appropriate for a November release than summer.</description>
		<content:encoded><![CDATA[<p>HD versions: <a href="http://www.moviefone.com/movie/harry-potter-and-the-half-blood-prince/27063/main" rel="nofollow">http://www.moviefone.com/movie/harry-potter-and-the-half-blood-prince/27063/main</a></p>
<p>Personally, I can&#8217;t freaking wait. I&#8217;m glad its in the winter this year. I&#8217;ve always thought it way more appropriate for a November release than summer.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on The Guggeheim in Bilbao by Robby Ingebretsen</title>
		<link>http://scorbs.com/2008/07/03/the-guggeheim-in-bilbao#comment-44298</link>
		<dc:creator>Robby Ingebretsen</dc:creator>
		<pubDate>Thu, 31 Jul 2008 05:47:02 +0000</pubDate>
		<guid isPermaLink="false">http://scorbs.com/2008/07/03/the-guggeheim-in-bilbao/#comment-44298</guid>
		<description>As always, these are stunning.  Why couldn't Frank Gehry have built the Gugenheim in Seattle and the EMP in Bibao??</description>
		<content:encoded><![CDATA[<p>As always, these are stunning.  Why couldn&#8217;t Frank Gehry have built the Gugenheim in Seattle and the EMP in Bibao??</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Parts &#38; States Model with VisualStateManager (Part 3 of 4) by Mike Dobbles</title>
		<link>http://scorbs.com/2008/06/23/parts-states-model-with-visualstatemanager-part-3-of-4#comment-43576</link>
		<dc:creator>Mike Dobbles</dc:creator>
		<pubDate>Sun, 27 Jul 2008 03:07:47 +0000</pubDate>
		<guid isPermaLink="false">http://scorbs.com/2008/06/23/parts-states-model-with-visualstatemanager-part-3-of-4/#comment-43576</guid>
		<description>I'm not understanding the method OnConditionPropertyChanged.  Can you explain it more?  It doesn't look like args are used below, but probably a deeper question is why was this callback needed in the first place?

        private static void OnConditionPropertyChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
        {
            WeatherControl weather = d as WeatherControl;
            var newValue = (Condition)e.NewValue;
            RoutedEventArgs args = new RoutedEventArgs();
            args.Source = weather;
            weather.OnWeatherChange(null);
        }</description>
		<content:encoded><![CDATA[<p>I&#8217;m not understanding the method OnConditionPropertyChanged.  Can you explain it more?  It doesn&#8217;t look like args are used below, but probably a deeper question is why was this callback needed in the first place?</p>
<p>        private static void OnConditionPropertyChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)<br />
        {<br />
            WeatherControl weather = d as WeatherControl;<br />
            var newValue = (Condition)e.NewValue;<br />
            RoutedEventArgs args = new RoutedEventArgs();<br />
            args.Source = weather;<br />
            weather.OnWeatherChange(null);<br />
        }</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Silverlight HTTP Networking Stack &#8211; Part 1 (Site of Origin Communication) by chris</title>
		<link>http://scorbs.com/2008/04/05/silverlight-http-networking-stack-part-1-site-of-origin-communication#comment-43455</link>
		<dc:creator>chris</dc:creator>
		<pubDate>Sat, 26 Jul 2008 12:44:57 +0000</pubDate>
		<guid isPermaLink="false">http://scorbs.com/2008/04/05/silverlight-http-networking-stack-part-1-site-of-origin-communication/#comment-43455</guid>
		<description>Thanks for this post. I built a File Upload tool in Silverlight 2 beta 1, and just recently ported it to beta 2. Your article was very useful to me when I reworked the client/server communications, I use WebRequest together with a helper class I built to invoke PageMethods in ASP.NET pages. The changes from beta 1 to beta 2 (requests now running in their own thread etc) gave me headaches, but thanks to your post I could solve the problems!</description>
		<content:encoded><![CDATA[<p>Thanks for this post. I built a File Upload tool in Silverlight 2 beta 1, and just recently ported it to beta 2. Your article was very useful to me when I reworked the client/server communications, I use WebRequest together with a helper class I built to invoke PageMethods in ASP.NET pages. The changes from beta 1 to beta 2 (requests now running in their own thread etc) gave me headaches, but thanks to your post I could solve the problems!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on AdoramaPix has Flickr Intergration! by Karen</title>
		<link>http://scorbs.com/2008/03/22/adoramapix-has-flickr-intergration#comment-42592</link>
		<dc:creator>Karen</dc:creator>
		<pubDate>Mon, 21 Jul 2008 17:15:36 +0000</pubDate>
		<guid isPermaLink="false">http://scorbs.com/2008/03/22/adoramapix-has-flickr-intergration/#comment-42592</guid>
		<description>Yep - it does pull the high res originals.  You have to log into your flickr account on the adorama site, and then they can access everything.  :)</description>
		<content:encoded><![CDATA[<p>Yep - it does pull the high res originals.  You have to log into your flickr account on the adorama site, and then they can access everything.  <img src='http://scorbs.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on AdoramaPix has Flickr Intergration! by HT</title>
		<link>http://scorbs.com/2008/03/22/adoramapix-has-flickr-intergration#comment-42396</link>
		<dc:creator>HT</dc:creator>
		<pubDate>Sat, 19 Jul 2008 21:54:52 +0000</pubDate>
		<guid isPermaLink="false">http://scorbs.com/2008/03/22/adoramapix-has-flickr-intergration/#comment-42396</guid>
		<description>Is Adorama able to pull your full-resolution photos from Flickr for printing?  I LOVE Adorama, and it'd be wonderful to take advantage of their integration with Flickr</description>
		<content:encoded><![CDATA[<p>Is Adorama able to pull your full-resolution photos from Flickr for printing?  I LOVE Adorama, and it&#8217;d be wonderful to take advantage of their integration with Flickr</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on XBAP &#38; Trust Levels by Eric</title>
		<link>http://scorbs.com/2007/01/10/xbap-trust-levels#comment-42245</link>
		<dc:creator>Eric</dc:creator>
		<pubDate>Fri, 18 Jul 2008 15:13:36 +0000</pubDate>
		<guid isPermaLink="false">http://scorbs.com/2007/01/10/xbap-trust-levels/#comment-42245</guid>
		<description>Hi Karen 
Excellent post!  Can you please elaborate in the first workaround?

“Install an AllowPartiallyTrustedCallersAttribute’d (APTCA) assembly in to the client’s Global Assembly Cache (GAC).  Use this full trust assembly to proxy calls for the XBAP.”

I am working with an xbap application in Visual Studio 2008.  I installed an APTCA assembly in the client’s GAC like you indicated but when I try to run my code I get the following exception: 

System.Security.SecurityException: Request for the permission of type 'System.Security.Permissions.FileIOPermission

Thanks in advance</description>
		<content:encoded><![CDATA[<p>Hi Karen<br />
Excellent post!  Can you please elaborate in the first workaround?</p>
<p>“Install an AllowPartiallyTrustedCallersAttribute’d (APTCA) assembly in to the client’s Global Assembly Cache (GAC).  Use this full trust assembly to proxy calls for the XBAP.”</p>
<p>I am working with an xbap application in Visual Studio 2008.  I installed an APTCA assembly in the client’s GAC like you indicated but when I try to run my code I get the following exception: </p>
<p>System.Security.SecurityException: Request for the permission of type &#8216;System.Security.Permissions.FileIOPermission</p>
<p>Thanks in advance</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on FlickrViewr Updated for Beta2 by Rajeev Goel</title>
		<link>http://scorbs.com/2008/07/10/flickrviewr-updated-for-beta2#comment-41924</link>
		<dc:creator>Rajeev Goel</dc:creator>
		<pubDate>Wed, 16 Jul 2008 19:41:37 +0000</pubDate>
		<guid isPermaLink="false">http://scorbs.com/2008/07/10/flickrviewr-updated-for-beta2/#comment-41924</guid>
		<description>Karen --

The controls have been posted to http://silverlightnuggets.com.  Thanks!

And you're right, I had neglected to get myself a Flickr API key ... that's why it wasn't working for me.  I should read your instructions more carefully next time!

--Rajeev</description>
		<content:encoded><![CDATA[<p>Karen &#8211;</p>
<p>The controls have been posted to <a href="http://silverlightnuggets.com" rel="nofollow">http://silverlightnuggets.com</a>.  Thanks!</p>
<p>And you&#8217;re right, I had neglected to get myself a Flickr API key &#8230; that&#8217;s why it wasn&#8217;t working for me.  I should read your instructions more carefully next time!</p>
<p>&#8211;Rajeev</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on FlickrViewr Updated for Beta2 by Yaniv</title>
		<link>http://scorbs.com/2008/07/10/flickrviewr-updated-for-beta2#comment-41881</link>
		<dc:creator>Yaniv</dc:creator>
		<pubDate>Wed, 16 Jul 2008 06:29:06 +0000</pubDate>
		<guid isPermaLink="false">http://scorbs.com/2008/07/10/flickrviewr-updated-for-beta2/#comment-41881</guid>
		<description>Karen Hi,
I have few questions regarding to Silverlight beta2 (we use Silverlight beta2 with WCF in our application). Thank you in advanced for your answers:
-	Where did XMLDataSource disappear? We need it….
-	I am experiencing a very annoying bug when trying to make GUI changes for different states –Expression blend crushes! Are you familiar with this?
-	 I am using a Dataset as my datasource using WCF to bring it to the client. 
The proxy converts the dataset to XElement but I get a compilation error: "The type or namespace name 'schema' could not be found". What reference do I need?

Thanks again,
Yaniv</description>
		<content:encoded><![CDATA[<p>Karen Hi,<br />
I have few questions regarding to Silverlight beta2 (we use Silverlight beta2 with WCF in our application). Thank you in advanced for your answers:<br />
-	Where did XMLDataSource disappear? We need it….<br />
-	I am experiencing a very annoying bug when trying to make GUI changes for different states –Expression blend crushes! Are you familiar with this?<br />
-	 I am using a Dataset as my datasource using WCF to bring it to the client.<br />
The proxy converts the dataset to XElement but I get a compilation error: &#8220;The type or namespace name &#8217;schema&#8217; could not be found&#8221;. What reference do I need?</p>
<p>Thanks again,<br />
Yaniv</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on FlickrViewr Updated for Beta2 by Karen</title>
		<link>http://scorbs.com/2008/07/10/flickrviewr-updated-for-beta2#comment-41875</link>
		<dc:creator>Karen</dc:creator>
		<pubDate>Wed, 16 Jul 2008 04:36:23 +0000</pubDate>
		<guid isPermaLink="false">http://scorbs.com/2008/07/10/flickrviewr-updated-for-beta2/#comment-41875</guid>
		<description>@Rajeev - feel free to post with a link back!  Also, when you try to run, have you gotten (and plugged in) a flickr API key?

@Yaniv - feel free to post your questions in the blog comments!</description>
		<content:encoded><![CDATA[<p>@Rajeev - feel free to post with a link back!  Also, when you try to run, have you gotten (and plugged in) a flickr API key?</p>
<p>@Yaniv - feel free to post your questions in the blog comments!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Parts &#38; States Model with VisualStateManager (Part 2 of 4) by Ricky</title>
		<link>http://scorbs.com/2008/06/18/parts-states-model-with-visualstatemanager-part-2-of-4#comment-41866</link>
		<dc:creator>Ricky</dc:creator>
		<pubDate>Wed, 16 Jul 2008 01:20:35 +0000</pubDate>
		<guid isPermaLink="false">http://scorbs.com/2008/06/18/parts-states-model-with-visualstatemanager-part-2-of-4/#comment-41866</guid>
		<description>Good stuff!!</description>
		<content:encoded><![CDATA[<p>Good stuff!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Breathing Fire by Karen</title>
		<link>http://scorbs.com/2008/06/29/breathing-fire#comment-41862</link>
		<dc:creator>Karen</dc:creator>
		<pubDate>Wed, 16 Jul 2008 00:37:42 +0000</pubDate>
		<guid isPermaLink="false">http://scorbs.com/2008/06/29/breathing-fire/#comment-41862</guid>
		<description>Not sure... but ate at the restaurant directly behind the fire blower.  "CheeseMe" - best name for a restaurant ever.</description>
		<content:encoded><![CDATA[<p>Not sure&#8230; but ate at the restaurant directly behind the fire blower.  &#8220;CheeseMe&#8221; - best name for a restaurant ever.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Spain Wins Euro Cup 2008! by Karen</title>
		<link>http://scorbs.com/2008/06/29/spain-wins-euro-cup-2008#comment-41859</link>
		<dc:creator>Karen</dc:creator>
		<pubDate>Wed, 16 Jul 2008 00:07:54 +0000</pubDate>
		<guid isPermaLink="false">http://scorbs.com/2008/06/29/spain-wins-euro-cup-2008/#comment-41859</guid>
		<description>Thanks for the correction!  Also, I'm backposting a lot of the photos - so expect a lot more out of order posts.  :)</description>
		<content:encoded><![CDATA[<p>Thanks for the correction!  Also, I&#8217;m backposting a lot of the photos - so expect a lot more out of order posts.  <img src='http://scorbs.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Breathing Fire by Neil Mosafi</title>
		<link>http://scorbs.com/2008/06/29/breathing-fire#comment-41858</link>
		<dc:creator>Neil Mosafi</dc:creator>
		<pubDate>Tue, 15 Jul 2008 23:59:03 +0000</pubDate>
		<guid isPermaLink="false">http://scorbs.com/2008/06/29/breathing-fire/#comment-41858</guid>
		<description>Now that place looks SO familiar.  Is that the Tapas restaurant behind you... the one that served rabbit and other exotic foods?</description>
		<content:encoded><![CDATA[<p>Now that place looks SO familiar.  Is that the Tapas restaurant behind you&#8230; the one that served rabbit and other exotic foods?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Spain Wins Euro Cup 2008! by Joel</title>
		<link>http://scorbs.com/2008/06/29/spain-wins-euro-cup-2008#comment-41857</link>
		<dc:creator>Joel</dc:creator>
		<pubDate>Tue, 15 Jul 2008 23:52:05 +0000</pubDate>
		<guid isPermaLink="false">http://scorbs.com/2008/06/29/spain-wins-euro-cup-2008/#comment-41857</guid>
		<description>I'm not sure what provoked Google Reader to show this entry in my list again, but something did catch my eye.

Euro 2008 was not in Italy, but in Austria and Switzerland. The final was in Vienna, Austria.

Enjoying all the pictures from your trip. It's certainly a great break from hundreds of daily developer posts.</description>
		<content:encoded><![CDATA[<p>I&#8217;m not sure what provoked Google Reader to show this entry in my list again, but something did catch my eye.</p>
<p>Euro 2008 was not in Italy, but in Austria and Switzerland. The final was in Vienna, Austria.</p>
<p>Enjoying all the pictures from your trip. It&#8217;s certainly a great break from hundreds of daily developer posts.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on FlickrViewr Updated for Beta2 by Yaniv</title>
		<link>http://scorbs.com/2008/07/10/flickrviewr-updated-for-beta2#comment-41849</link>
		<dc:creator>Yaniv</dc:creator>
		<pubDate>Tue, 15 Jul 2008 20:08:35 +0000</pubDate>
		<guid isPermaLink="false">http://scorbs.com/2008/07/10/flickrviewr-updated-for-beta2/#comment-41849</guid>
		<description>Karen Hi,
We are develping a new application using Silverlight beta 2.
We have few difficulities and need some answers, How can I contact you?
Thank you very much, love your blog ;)</description>
		<content:encoded><![CDATA[<p>Karen Hi,<br />
We are develping a new application using Silverlight beta 2.<br />
We have few difficulities and need some answers, How can I contact you?<br />
Thank you very much, love your blog <img src='http://scorbs.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on FlickrViewr Updated for Beta2 by Rajeev Goel</title>
		<link>http://scorbs.com/2008/07/10/flickrviewr-updated-for-beta2#comment-41792</link>
		<dc:creator>Rajeev Goel</dc:creator>
		<pubDate>Tue, 15 Jul 2008 07:58:21 +0000</pubDate>
		<guid isPermaLink="false">http://scorbs.com/2008/07/10/flickrviewr-updated-for-beta2/#comment-41792</guid>
		<description>Hi Karen --

The three sample controls (ModalDialog, ContinuousProgress, and HorizontalWrapPanel) that you included are incredibly useful for people building their own SL apps.  May I post demos of these controls to http://silverlightnuggets.com (a Silverlight code sharing site), along with a link back to your blog?

BTW, I downloaded your latest FlickrViewr sample, and it would only work for me when I removed the MinimumVersion="2.0.30523" attribute from FlickrViewrTestPage.aspx.  That could be a problem on my end, as that has happened to me with other apps as well.  I'm just mentioning it in case it helps others.  Also, after I got the FlickViewr app to run, it keeps telling me "that user does not exist" even when I type in your user name "scorbette37" ... not sure why.  I'm not asking you to investigate, just letting you know.

Thanks!
--Rajeev
rgoel@silverlightnuggets.com</description>
		<content:encoded><![CDATA[<p>Hi Karen &#8211;</p>
<p>The three sample controls (ModalDialog, ContinuousProgress, and HorizontalWrapPanel) that you included are incredibly useful for people building their own SL apps.  May I post demos of these controls to <a href="http://silverlightnuggets.com" rel="nofollow">http://silverlightnuggets.com</a> (a Silverlight code sharing site), along with a link back to your blog?</p>
<p>BTW, I downloaded your latest FlickrViewr sample, and it would only work for me when I removed the MinimumVersion=&#8221;2.0.30523&#8243; attribute from FlickrViewrTestPage.aspx.  That could be a problem on my end, as that has happened to me with other apps as well.  I&#8217;m just mentioning it in case it helps others.  Also, after I got the FlickViewr app to run, it keeps telling me &#8220;that user does not exist&#8221; even when I type in your user name &#8220;scorbette37&#8243; &#8230; not sure why.  I&#8217;m not asking you to investigate, just letting you know.</p>
<p>Thanks!<br />
&#8211;Rajeev<br />
<a href="mailto:rgoel@silverlightnuggets.com">rgoel@silverlightnuggets.com</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on XBAP &#38; Trust Levels by Philipp</title>
		<link>http://scorbs.com/2007/01/10/xbap-trust-levels#comment-41587</link>
		<dc:creator>Philipp</dc:creator>
		<pubDate>Mon, 14 Jul 2008 04:22:25 +0000</pubDate>
		<guid isPermaLink="false">http://scorbs.com/2007/01/10/xbap-trust-levels/#comment-41587</guid>
		<description>Hi Karen,

Thanks for the great post. I have a related question. I have already put a lot of time into coding a Windows Forms control which is hosted in a webpage via the  tag. But I recently wanted to upgrade it with a WPF control so I tried to add an instance of ElementHost to my control. But the ElementHost's constructor fails with a "Request failed." exception. I have given my control FullTrust. 

Do you know if this is possible? Do I have to assert a security permission? Or must I rewrite the control from scratch as an XBAP?

Thanks!</description>
		<content:encoded><![CDATA[<p>Hi Karen,</p>
<p>Thanks for the great post. I have a related question. I have already put a lot of time into coding a Windows Forms control which is hosted in a webpage via the  tag. But I recently wanted to upgrade it with a WPF control so I tried to add an instance of ElementHost to my control. But the ElementHost&#8217;s constructor fails with a &#8220;Request failed.&#8221; exception. I have given my control FullTrust. </p>
<p>Do you know if this is possible? Do I have to assert a security permission? Or must I rewrite the control from scratch as an XBAP?</p>
<p>Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Parts &#38; States Model with VisualStateManager (Part 3 of 4) by Karl Shifflett</title>
		<link>http://scorbs.com/2008/06/23/parts-states-model-with-visualstatemanager-part-3-of-4#comment-41529</link>
		<dc:creator>Karl Shifflett</dc:creator>
		<pubDate>Sun, 13 Jul 2008 13:42:56 +0000</pubDate>
		<guid isPermaLink="false">http://scorbs.com/2008/06/23/parts-states-model-with-visualstatemanager-part-3-of-4/#comment-41529</guid>
		<description>Karen,

I've noticed that the control does not trap the mouse movements.

For example; if you press the left mouse button, the control state changes.  If you then move the mouse away from the control before releasing the left mouse button, the control is left in an invalid state.

Can this be avoided?

Cheers,

Karl</description>
		<content:encoded><![CDATA[<p>Karen,</p>
<p>I&#8217;ve noticed that the control does not trap the mouse movements.</p>
<p>For example; if you press the left mouse button, the control state changes.  If you then move the mouse away from the control before releasing the left mouse button, the control is left in an invalid state.</p>
<p>Can this be avoided?</p>
<p>Cheers,</p>
<p>Karl</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on FlickrViewr Updated for Beta2 by Karen</title>
		<link>http://scorbs.com/2008/07/10/flickrviewr-updated-for-beta2#comment-41500</link>
		<dc:creator>Karen</dc:creator>
		<pubDate>Sun, 13 Jul 2008 02:20:43 +0000</pubDate>
		<guid isPermaLink="false">http://scorbs.com/2008/07/10/flickrviewr-updated-for-beta2/#comment-41500</guid>
		<description>I just downloaded the project &#038; re-built it... it worked fine for me.  Anyone else having any issues?

Thanks!
Karen</description>
		<content:encoded><![CDATA[<p>I just downloaded the project &#038; re-built it&#8230; it worked fine for me.  Anyone else having any issues?</p>
<p>Thanks!<br />
Karen</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on FlickrViewr Updated for Beta2 by Art Scott</title>
		<link>http://scorbs.com/2008/07/10/flickrviewr-updated-for-beta2#comment-41497</link>
		<dc:creator>Art Scott</dc:creator>
		<pubDate>Sun, 13 Jul 2008 01:46:32 +0000</pubDate>
		<guid isPermaLink="false">http://scorbs.com/2008/07/10/flickrviewr-updated-for-beta2/#comment-41497</guid>
		<description>Hi Karen, thanks for your SL2B2 FlikrViewer update.

When I click on .sln it opens VS 2008, and then gives me the yellow triange with exclamation point message "The project file 'C:\Users\Art\Documents\...FlikrViewer\FlickrViewr.csproj' cannot be opened.
The project type is not supported by this installation."

Think I have a good install of SL2B2...
Hope to get your demo working soon.</description>
		<content:encoded><![CDATA[<p>Hi Karen, thanks for your SL2B2 FlikrViewer update.</p>
<p>When I click on .sln it opens VS 2008, and then gives me the yellow triange with exclamation point message &#8220;The project file &#8216;C:\Users\Art\Documents\&#8230;FlikrViewer\FlickrViewr.csproj&#8217; cannot be opened.<br />
The project type is not supported by this installation.&#8221;</p>
<p>Think I have a good install of SL2B2&#8230;<br />
Hope to get your demo working soon.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on FlickrViewr Updated for Beta2 by Karen</title>
		<link>http://scorbs.com/2008/07/10/flickrviewr-updated-for-beta2#comment-41421</link>
		<dc:creator>Karen</dc:creator>
		<pubDate>Sat, 12 Jul 2008 02:39:21 +0000</pubDate>
		<guid isPermaLink="false">http://scorbs.com/2008/07/10/flickrviewr-updated-for-beta2/#comment-41421</guid>
		<description>Sorry, I meant I updated the links in the &lt;a href="http://scorbs.com/2008/03/14/flickrviewr/" rel="nofollow"&gt;original FlickrViewr post&lt;/a&gt;.

Also, I've updated the test page (i had forgotten to rename it default.html, and so it was picking up the old version).</description>
		<content:encoded><![CDATA[<p>Sorry, I meant I updated the links in the <a href="http://scorbs.com/2008/03/14/flickrviewr/" rel="nofollow">original FlickrViewr post</a>.</p>
<p>Also, I&#8217;ve updated the test page (i had forgotten to rename it default.html, and so it was picking up the old version).</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on FlickrViewr Updated for Beta2 by Steve</title>
		<link>http://scorbs.com/2008/07/10/flickrviewr-updated-for-beta2#comment-41418</link>
		<dc:creator>Steve</dc:creator>
		<pubDate>Sat, 12 Jul 2008 01:50:35 +0000</pubDate>
		<guid isPermaLink="false">http://scorbs.com/2008/07/10/flickrviewr-updated-for-beta2/#comment-41418</guid>
		<description>Yes this is what I was saying,  Where is the new code, the complete code that uses the latest version of silverlight.  I guess I can just cut and past the project files into a new project, But I thought that was part of updating.  Maybe updating should also change the test page.</description>
		<content:encoded><![CDATA[<p>Yes this is what I was saying,  Where is the new code, the complete code that uses the latest version of silverlight.  I guess I can just cut and past the project files into a new project, But I thought that was part of updating.  Maybe updating should also change the test page.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on FlickrViewr Updated for Beta2 by Jesus</title>
		<link>http://scorbs.com/2008/07/10/flickrviewr-updated-for-beta2#comment-41353</link>
		<dc:creator>Jesus</dc:creator>
		<pubDate>Fri, 11 Jul 2008 06:53:38 +0000</pubDate>
		<guid isPermaLink="false">http://scorbs.com/2008/07/10/flickrviewr-updated-for-beta2/#comment-41353</guid>
		<description>I get the install logo too. I agree with jocelyn, app type is wrong. 
Anyway, thanks for your blog!</description>
		<content:encoded><![CDATA[<p>I get the install logo too. I agree with jocelyn, app type is wrong.<br />
Anyway, thanks for your blog!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on FlickrViewr Updated for Beta2 by jocelyn</title>
		<link>http://scorbs.com/2008/07/10/flickrviewr-updated-for-beta2#comment-41346</link>
		<dc:creator>jocelyn</dc:creator>
		<pubDate>Fri, 11 Jul 2008 05:25:43 +0000</pubDate>
		<guid isPermaLink="false">http://scorbs.com/2008/07/10/flickrviewr-updated-for-beta2/#comment-41346</guid>
		<description>i think it's because the object tag still marks it of   type="application/x-silverlight-2-b1"  :)</description>
		<content:encoded><![CDATA[<p>i think it&#8217;s because the object tag still marks it of   type=&#8221;application/x-silverlight-2-b1&#8243;  <img src='http://scorbs.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on FlickrViewr Updated for Beta2 by Karen</title>
		<link>http://scorbs.com/2008/07/10/flickrviewr-updated-for-beta2#comment-41339</link>
		<dc:creator>Karen</dc:creator>
		<pubDate>Fri, 11 Jul 2008 04:18:51 +0000</pubDate>
		<guid isPermaLink="false">http://scorbs.com/2008/07/10/flickrviewr-updated-for-beta2/#comment-41339</guid>
		<description>it is... though I uploaded it to the same location.  Can you please try clearing your cache &#038; let me know if that works?</description>
		<content:encoded><![CDATA[<p>it is&#8230; though I uploaded it to the same location.  Can you please try clearing your cache &#038; let me know if that works?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on FlickrViewr Updated for Beta2 by John</title>
		<link>http://scorbs.com/2008/07/10/flickrviewr-updated-for-beta2#comment-41337</link>
		<dc:creator>John</dc:creator>
		<pubDate>Fri, 11 Jul 2008 04:03:44 +0000</pubDate>
		<guid isPermaLink="false">http://scorbs.com/2008/07/10/flickrviewr-updated-for-beta2/#comment-41337</guid>
		<description>hmm, i'm presented with the painful "install silverlight" logo when i already have beta2 installed... you sure the example app is beta2?</description>
		<content:encoded><![CDATA[<p>hmm, i&#8217;m presented with the painful &#8220;install silverlight&#8221; logo when i already have beta2 installed&#8230; you sure the example app is beta2?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on FlickrViewr Updated for Beta2 by Karen</title>
		<link>http://scorbs.com/2008/07/10/flickrviewr-updated-for-beta2#comment-41333</link>
		<dc:creator>Karen</dc:creator>
		<pubDate>Fri, 11 Jul 2008 02:48:23 +0000</pubDate>
		<guid isPermaLink="false">http://scorbs.com/2008/07/10/flickrviewr-updated-for-beta2/#comment-41333</guid>
		<description>:) The links are at the original post!</description>
		<content:encoded><![CDATA[<p> <img src='http://scorbs.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> The links are at the original post!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on FlickrViewr Updated for Beta2 by Steve</title>
		<link>http://scorbs.com/2008/07/10/flickrviewr-updated-for-beta2#comment-41331</link>
		<dc:creator>Steve</dc:creator>
		<pubDate>Fri, 11 Jul 2008 02:27:42 +0000</pubDate>
		<guid isPermaLink="false">http://scorbs.com/2008/07/10/flickrviewr-updated-for-beta2/#comment-41331</guid>
		<description>I think this is a gread example application, and I am glad you updated it.  How do I get the source code.</description>
		<content:encoded><![CDATA[<p>I think this is a gread example application, and I am glad you updated it.  How do I get the source code.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Parts &#38; States Model with VisualStateManager (Part 4 of 4) by Patrice Lafond</title>
		<link>http://scorbs.com/2008/06/25/parts-states-model-with-visualstatemanager-part-4-of-4#comment-41283</link>
		<dc:creator>Patrice Lafond</dc:creator>
		<pubDate>Thu, 10 Jul 2008 15:04:36 +0000</pubDate>
		<guid isPermaLink="false">http://scorbs.com/2008/06/25/parts-states-model-with-visualstatemanager-part-4-of-4/#comment-41283</guid>
		<description>Wow! Exactly what I was looking for! Most of tutorials use Blend (not that is bad, but I understand better with source code).</description>
		<content:encoded><![CDATA[<p>Wow! Exactly what I was looking for! Most of tutorials use Blend (not that is bad, but I understand better with source code).</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on VS Template: Flexible Application by Jody</title>
		<link>http://scorbs.com/2006/06/04/vs-template-flexible-application#comment-41278</link>
		<dc:creator>Jody</dc:creator>
		<pubDate>Thu, 10 Jul 2008 13:42:28 +0000</pubDate>
		<guid isPermaLink="false">http://scorbs.com/2006/06/04/vs-template-flexible-application/#comment-41278</guid>
		<description>Hi,

The Template works great with only one project but I added a class library DLL to the solution and now I am getting a security permission exception when trying to access a method in that DLL with the XBAP debug configuration from the main application. I edited the class library DLL project file to contain the same configurations as the template. The app works fine when in debug configuration (Windows). 

Previously, in another solution (non flexible config) I had a XBAP solution using a class library DLL built with another solution without security problems.

Thanks for any help,
Jody</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>The Template works great with only one project but I added a class library DLL to the solution and now I am getting a security permission exception when trying to access a method in that DLL with the XBAP debug configuration from the main application. I edited the class library DLL project file to contain the same configurations as the template. The app works fine when in debug configuration (Windows). </p>
<p>Previously, in another solution (non flexible config) I had a XBAP solution using a class library DLL built with another solution without security problems.</p>
<p>Thanks for any help,<br />
Jody</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Parts &#38; States Model with VisualStateManager (Part 3 of 4) by Chuck Jazdzewski</title>
		<link>http://scorbs.com/2008/06/23/parts-states-model-with-visualstatemanager-part-3-of-4#comment-41106</link>
		<dc:creator>Chuck Jazdzewski</dc:creator>
		<pubDate>Tue, 08 Jul 2008 23:04:28 +0000</pubDate>
		<guid isPermaLink="false">http://scorbs.com/2008/06/23/parts-states-model-with-visualstatemanager-part-3-of-4/#comment-41106</guid>
		<description>PME == Property, Methods and Events

PME is most often used in place of API when talking about objects. Sometimes it is also refered to as OM or Object Model.</description>
		<content:encoded><![CDATA[<p>PME == Property, Methods and Events</p>
<p>PME is most often used in place of API when talking about objects. Sometimes it is also refered to as OM or Object Model.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Parts &#38; States Model with VisualStateManager (Part 3 of 4) by Karen</title>
		<link>http://scorbs.com/2008/06/23/parts-states-model-with-visualstatemanager-part-3-of-4#comment-41105</link>
		<dc:creator>Karen</dc:creator>
		<pubDate>Tue, 08 Jul 2008 23:00:14 +0000</pubDate>
		<guid isPermaLink="false">http://scorbs.com/2008/06/23/parts-states-model-with-visualstatemanager-part-3-of-4/#comment-41105</guid>
		<description>Thanks everyone for the comments!

@Neil:  yes, you can create a UserControl using states.  Today, the expectation around UserControls is that the designer will be creating the states first and then passing it to the control code developers to hook up the states.  Therefore, there the tools are not looking at class metadata on UserControls.  I have, however, passed on your question to the Blend team.

@John:  
   -  PME stands for "Properties, Methods, and Events".  :)
   -  I fixed the typo, thanks!
   -  The core part actually doesn't necessarily need to be the whole visual portion.  In fact, it's actually just the center part of the control.  (Although, it's true... this usage of a Part is a bit contrived.  Better examples of Part usage is the Thumb part of a Slider, etc.  But I wanted to keep things simple in this post.)</description>
		<content:encoded><![CDATA[<p>Thanks everyone for the comments!</p>
<p>@Neil:  yes, you can create a UserControl using states.  Today, the expectation around UserControls is that the designer will be creating the states first and then passing it to the control code developers to hook up the states.  Therefore, there the tools are not looking at class metadata on UserControls.  I have, however, passed on your question to the Blend team.</p>
<p>@John:<br />
   -  PME stands for &#8220;Properties, Methods, and Events&#8221;.  <img src='http://scorbs.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
   -  I fixed the typo, thanks!<br />
   -  The core part actually doesn&#8217;t necessarily need to be the whole visual portion.  In fact, it&#8217;s actually just the center part of the control.  (Although, it&#8217;s true&#8230; this usage of a Part is a bit contrived.  Better examples of Part usage is the Thumb part of a Slider, etc.  But I wanted to keep things simple in this post.)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on VS Template: Flexible Application by Michael Sync</title>
		<link>http://scorbs.com/2006/06/04/vs-template-flexible-application#comment-40745</link>
		<dc:creator>Michael Sync</dc:creator>
		<pubDate>Mon, 07 Jul 2008 02:00:02 +0000</pubDate>
		<guid isPermaLink="false">http://scorbs.com/2006/06/04/vs-template-flexible-application/#comment-40745</guid>
		<description>Do you have flexible application template for VS 2008? I just tried to put your zip file in template path that you mentioned. but it doesn't show in VS 2008.</description>
		<content:encoded><![CDATA[<p>Do you have flexible application template for VS 2008? I just tried to put your zip file in template path that you mentioned. but it doesn&#8217;t show in VS 2008.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Woodgrove Demo by Robert</title>
		<link>http://scorbs.com/2006/06/16/woodgrove-demo#comment-40715</link>
		<dc:creator>Robert</dc:creator>
		<pubDate>Sun, 06 Jul 2008 23:15:22 +0000</pubDate>
		<guid isPermaLink="false">http://scorbs.com/2006/06/16/woodgrove-demo/#comment-40715</guid>
		<description>It appears you can call WCF web services with xbaps now, which I guess makes things easier.  My problem is I still don't know enough about WCF to really make any use of it.  I was wondering if you could put together a sample that calls an external API such as Live search and returns a users search to them (partial-trust mode).  That would explain how to make practical use of an XBAP in my opinion.  Either REST or SOAP it doesn't matter that much as long as I can interact with an external API.  Thanks for writing this really informative post!</description>
		<content:encoded><![CDATA[<p>It appears you can call WCF web services with xbaps now, which I guess makes things easier.  My problem is I still don&#8217;t know enough about WCF to really make any use of it.  I was wondering if you could put together a sample that calls an external API such as Live search and returns a users search to them (partial-trust mode).  That would explain how to make practical use of an XBAP in my opinion.  Either REST or SOAP it doesn&#8217;t matter that much as long as I can interact with an external API.  Thanks for writing this really informative post!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Parts &#38; States Model with VisualStateManager (Part 4 of 4) by Dr. YSG</title>
		<link>http://scorbs.com/2008/06/25/parts-states-model-with-visualstatemanager-part-4-of-4#comment-40022</link>
		<dc:creator>Dr. YSG</dc:creator>
		<pubDate>Thu, 03 Jul 2008 13:57:35 +0000</pubDate>
		<guid isPermaLink="false">http://scorbs.com/2008/06/25/parts-states-model-with-visualstatemanager-part-4-of-4/#comment-40022</guid>
		<description>It was an excellent series, well written, and very informative (at least to me).

But I am still left with a question. 

It seems to me that the example could have been accomplished much easer with templating a UserControl. I think I could easily capture hover, disable, and mouse events and use the VSM in blend to rapdily create the same effects. 

I must be missing something. Why would I go to the work of building the custom control from scratch. It seems there is something I am still not understanding where method gives some power I would not mormally have.</description>
		<content:encoded><![CDATA[<p>It was an excellent series, well written, and very informative (at least to me).</p>
<p>But I am still left with a question. </p>
<p>It seems to me that the example could have been accomplished much easer with templating a UserControl. I think I could easily capture hover, disable, and mouse events and use the VSM in blend to rapdily create the same effects. </p>
<p>I must be missing something. Why would I go to the work of building the custom control from scratch. It seems there is something I am still not understanding where method gives some power I would not mormally have.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Parts &#38; States Model with VisualStateManager (Part 3 of 4) by John "Z-Bo" Zabroski</title>
		<link>http://scorbs.com/2008/06/23/parts-states-model-with-visualstatemanager-part-3-of-4#comment-39812</link>
		<dc:creator>John "Z-Bo" Zabroski</dc:creator>
		<pubDate>Wed, 02 Jul 2008 02:21:45 +0000</pubDate>
		<guid isPermaLink="false">http://scorbs.com/2008/06/23/parts-states-model-with-visualstatemanager-part-3-of-4/#comment-39812</guid>
		<description>also, the GoToState() helper in Silverlight is named ChangeVisualState()... which makes more sense</description>
		<content:encoded><![CDATA[<p>also, the GoToState() helper in Silverlight is named ChangeVisualState()&#8230; which makes more sense</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Parts &#38; States Model with VisualStateManager (Part 4 of 4) by John "Z-Bo" Zabroski</title>
		<link>http://scorbs.com/2008/06/25/parts-states-model-with-visualstatemanager-part-4-of-4#comment-39740</link>
		<dc:creator>John "Z-Bo" Zabroski</dc:creator>
		<pubDate>Tue, 01 Jul 2008 16:19:01 +0000</pubDate>
		<guid isPermaLink="false">http://scorbs.com/2008/06/25/parts-states-model-with-visualstatemanager-part-4-of-4/#comment-39740</guid>
		<description>The major problem with the current GoToState is that it is fully encapsulated in the ancestor class.  Adding a new state to a state group requires breaking encapsulation, or rather unencapsulating things that were given too fine-grained encapsulation... triggers are a good idea and I like how the overall architecture of WPF is selectively open and exposes states through statechart-like analysis patterns.</description>
		<content:encoded><![CDATA[<p>The major problem with the current GoToState is that it is fully encapsulated in the ancestor class.  Adding a new state to a state group requires breaking encapsulation, or rather unencapsulating things that were given too fine-grained encapsulation&#8230; triggers are a good idea and I like how the overall architecture of WPF is selectively open and exposes states through statechart-like analysis patterns.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Parts &#38; States Model with VisualStateManager (Part 3 of 4) by John "Z-Bo" Zabroski</title>
		<link>http://scorbs.com/2008/06/23/parts-states-model-with-visualstatemanager-part-3-of-4#comment-39629</link>
		<dc:creator>John "Z-Bo" Zabroski</dc:creator>
		<pubDate>Mon, 30 Jun 2008 21:31:10 +0000</pubDate>
		<guid isPermaLink="false">http://scorbs.com/2008/06/23/parts-states-model-with-visualstatemanager-part-3-of-4/#comment-39629</guid>
		<description>also, one more subtle remark: In the explicit transition animations defined by the Storyboard elements, you are implicitly storing information about the prior state:



The transition should simply represent the transition, if possible.  Only store actual values from states in the transition for performance reasons, since it increases data redundancy and potential for mistakes.  VisualTransition objects should only keep track of the relationships between states.

sorry for spamming your wonderful blog series, btw, with my thoughts on best practices</description>
		<content:encoded><![CDATA[<p>also, one more subtle remark: In the explicit transition animations defined by the Storyboard elements, you are implicitly storing information about the prior state:</p>
<p>The transition should simply represent the transition, if possible.  Only store actual values from states in the transition for performance reasons, since it increases data redundancy and potential for mistakes.  VisualTransition objects should only keep track of the relationships between states.</p>
<p>sorry for spamming your wonderful blog series, btw, with my thoughts on best practices</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Parts &#38; States Model with VisualStateManager (Part 3 of 4) by John "Z-Bo" Zabroski</title>
		<link>http://scorbs.com/2008/06/23/parts-states-model-with-visualstatemanager-part-3-of-4#comment-39615</link>
		<dc:creator>John "Z-Bo" Zabroski</dc:creator>
		<pubDate>Mon, 30 Jun 2008 19:35:36 +0000</pubDate>
		<guid isPermaLink="false">http://scorbs.com/2008/06/23/parts-states-model-with-visualstatemanager-part-3-of-4/#comment-39615</guid>
		<description>also,

"In the above example, we discover the "Core" part, which we will use to determine when the control should go into the MouseOver or Pressed states. "

The subtle assumption here is that the corePart defines the whole visual region of the control and therefore the whole visual hit test.  However, just looking at the code given doesn't tell you that much...</description>
		<content:encoded><![CDATA[<p>also,</p>
<p>&#8220;In the above example, we discover the &#8220;Core&#8221; part, which we will use to determine when the control should go into the MouseOver or Pressed states. &#8221;</p>
<p>The subtle assumption here is that the corePart defines the whole visual region of the control and therefore the whole visual hit test.  However, just looking at the code given doesn&#8217;t tell you that much&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Parts &#38; States Model with VisualStateManager (Part 3 of 4) by John "Z-Bo" Zabroski</title>
		<link>http://scorbs.com/2008/06/23/parts-states-model-with-visualstatemanager-part-3-of-4#comment-39607</link>
		<dc:creator>John "Z-Bo" Zabroski</dc:creator>
		<pubDate>Mon, 30 Jun 2008 17:56:46 +0000</pubDate>
		<guid isPermaLink="false">http://scorbs.com/2008/06/23/parts-states-model-with-visualstatemanager-part-3-of-4/#comment-39607</guid>
		<description>also, i think you have a typo on line 16 of the first code snippet.

public static readonly DependencyProperty TemperatureProperty = = DependencyProperty.Register("Condition", typeof(Condition), typeof(WeatherControl),null);

should have only one equals and should be ... DependencyProperty.Register("Temperature", ... ???</description>
		<content:encoded><![CDATA[<p>also, i think you have a typo on line 16 of the first code snippet.</p>
<p>public static readonly DependencyProperty TemperatureProperty = = DependencyProperty.Register(&#8221;Condition&#8221;, typeof(Condition), typeof(WeatherControl),null);</p>
<p>should have only one equals and should be &#8230; DependencyProperty.Register(&#8221;Temperature&#8221;, &#8230; ???</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Parts &#38; States Model with VisualStateManager (Part 3 of 4) by John "Z-Bo" Zabroski</title>
		<link>http://scorbs.com/2008/06/23/parts-states-model-with-visualstatemanager-part-3-of-4#comment-39592</link>
		<dc:creator>John "Z-Bo" Zabroski</dc:creator>
		<pubDate>Mon, 30 Jun 2008 15:28:03 +0000</pubDate>
		<guid isPermaLink="false">http://scorbs.com/2008/06/23/parts-states-model-with-visualstatemanager-part-3-of-4/#comment-39592</guid>
		<description>@"VSM exposes two main pieces of PME:"

What does PME stand for?</description>
		<content:encoded><![CDATA[<p>@&#8221;VSM exposes two main pieces of PME:&#8221;</p>
<p>What does PME stand for?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Parts &#38; States Model with VisualStateManager (Part 1 of 4) by Fahim Ilyas</title>
		<link>http://scorbs.com/2008/06/11/parts-states-model-with-visualstatemanager-part-1-of#comment-39548</link>
		<dc:creator>Fahim Ilyas</dc:creator>
		<pubDate>Mon, 30 Jun 2008 07:05:10 +0000</pubDate>
		<guid isPermaLink="false">http://scorbs.com/2008/06/11/parts-states-model-with-visualstatemanager-part-1-of/#comment-39548</guid>
		<description>Very interesting, anybody looking for customization of the look and feel of application should read this because this article truly reflects what look less control means and how easy it is to create a custom look and states for a control in silverlight.</description>
		<content:encoded><![CDATA[<p>Very interesting, anybody looking for customization of the look and feel of application should read this because this article truly reflects what look less control means and how easy it is to create a custom look and states for a control in silverlight.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Spain! by Thom</title>
		<link>http://scorbs.com/2008/06/23/spain#comment-39514</link>
		<dc:creator>Thom</dc:creator>
		<pubDate>Mon, 30 Jun 2008 00:48:32 +0000</pubDate>
		<guid isPermaLink="false">http://scorbs.com/2008/06/23/spain/#comment-39514</guid>
		<description>WoW! What a time to be in Spain? Have you become a futbol fan yet?

I read your blog for the great WPF articles, but good to know you are at the center of the world today. 
Have a great trip.</description>
		<content:encoded><![CDATA[<p>WoW! What a time to be in Spain? Have you become a futbol fan yet?</p>
<p>I read your blog for the great WPF articles, but good to know you are at the center of the world today.<br />
Have a great trip.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A Fabulous Barcelona Day by Miguel Jiménez</title>
		<link>http://scorbs.com/2008/06/29/a-fabulous-barcelona-day#comment-39461</link>
		<dc:creator>Miguel Jiménez</dc:creator>
		<pubDate>Sun, 29 Jun 2008 15:08:02 +0000</pubDate>
		<guid isPermaLink="false">http://scorbs.com/2008/06/29/a-fabulous-barcelona-day/#comment-39461</guid>
		<description>Welcome to Spain! Hope you enjoy it so much that you attend TechEd Developers EMEA next November (held in sunny and warm Barcelona) or MIX Essentials in October (held in hot Madrid)</description>
		<content:encoded><![CDATA[<p>Welcome to Spain! Hope you enjoy it so much that you attend TechEd Developers EMEA next November (held in sunny and warm Barcelona) or MIX Essentials in October (held in hot Madrid)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Parts &#38; States Model with VisualStateManager (Part 4 of 4) by Bruce Denham</title>
		<link>http://scorbs.com/2008/06/25/parts-states-model-with-visualstatemanager-part-4-of-4#comment-39378</link>
		<dc:creator>Bruce Denham</dc:creator>
		<pubDate>Sat, 28 Jun 2008 23:45:33 +0000</pubDate>
		<guid isPermaLink="false">http://scorbs.com/2008/06/25/parts-states-model-with-visualstatemanager-part-4-of-4/#comment-39378</guid>
		<description>Excellent series. You mentioned that the Parts &#38; States Model could also be used with User Controls. I'm having trouble conceptualizing that, but I guess you would just leave the XAML of the UserControl relatively empty, then access the ControlTemplate from the UserControl's resources (or the Application.Resources). It would be good to know why you'd want to do all this for a UserControl, instead of just declaring the UI in it's XAML. Maybe for UserControls, you build your Parts into the XAML while keeping your Visual States and Transitions separate elsewhere? Wondering...</description>
		<content:encoded><![CDATA[<p>Excellent series. You mentioned that the Parts &amp; States Model could also be used with User Controls. I&#8217;m having trouble conceptualizing that, but I guess you would just leave the XAML of the UserControl relatively empty, then access the ControlTemplate from the UserControl&#8217;s resources (or the Application.Resources). It would be good to know why you&#8217;d want to do all this for a UserControl, instead of just declaring the UI in it&#8217;s XAML. Maybe for UserControls, you build your Parts into the XAML while keeping your Visual States and Transitions separate elsewhere? Wondering&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Parts &#38; States Model with VisualStateManager (Part 4 of 4) by Keith Woods</title>
		<link>http://scorbs.com/2008/06/25/parts-states-model-with-visualstatemanager-part-4-of-4#comment-39143</link>
		<dc:creator>Keith Woods</dc:creator>
		<pubDate>Thu, 26 Jun 2008 15:19:21 +0000</pubDate>
		<guid isPermaLink="false">http://scorbs.com/2008/06/25/parts-states-model-with-visualstatemanager-part-4-of-4/#comment-39143</guid>
		<description>Great series, thanks :)</description>
		<content:encoded><![CDATA[<p>Great series, thanks <img src='http://scorbs.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Parts &#38; States Model with VisualStateManager (Part 4 of 4) by Nostromo</title>
		<link>http://scorbs.com/2008/06/25/parts-states-model-with-visualstatemanager-part-4-of-4#comment-39106</link>
		<dc:creator>Nostromo</dc:creator>
		<pubDate>Thu, 26 Jun 2008 09:35:18 +0000</pubDate>
		<guid isPermaLink="false">http://scorbs.com/2008/06/25/parts-states-model-with-visualstatemanager-part-4-of-4/#comment-39106</guid>
		<description>the second choice: the designer can add new states :D</description>
		<content:encoded><![CDATA[<p>the second choice: the designer can add new states <img src='http://scorbs.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Parts &#38; States Model with VisualStateManager (Part 4 of 4) by novecento</title>
		<link>http://scorbs.com/2008/06/25/parts-states-model-with-visualstatemanager-part-4-of-4#comment-39098</link>
		<dc:creator>novecento</dc:creator>
		<pubDate>Thu, 26 Jun 2008 08:43:41 +0000</pubDate>
		<guid isPermaLink="false">http://scorbs.com/2008/06/25/parts-states-model-with-visualstatemanager-part-4-of-4/#comment-39098</guid>
		<description>Triggers?! Yes Yes Yes! :D</description>
		<content:encoded><![CDATA[<p>Triggers?! Yes Yes Yes! <img src='http://scorbs.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Spain! by Ian</title>
		<link>http://scorbs.com/2008/06/23/spain#comment-39012</link>
		<dc:creator>Ian</dc:creator>
		<pubDate>Wed, 25 Jun 2008 20:50:39 +0000</pubDate>
		<guid isPermaLink="false">http://scorbs.com/2008/06/23/spain/#comment-39012</guid>
		<description>Hi Karen,

Have a great time in Spain.

If you have a Windows Mobile device, I find this spb Traveller app really useful for those quick facts (and a ton of other stuff)

http://www.clickapps.com/moreinfo.htm?pid=14026&#38;section=PPC 

Cool blog by the way ;-)

Cheers

Ian</description>
		<content:encoded><![CDATA[<p>Hi Karen,</p>
<p>Have a great time in Spain.</p>
<p>If you have a Windows Mobile device, I find this spb Traveller app really useful for those quick facts (and a ton of other stuff)</p>
<p><a href="http://www.clickapps.com/moreinfo.htm?pid=14026&amp;section=PPC" rel="nofollow">http://www.clickapps.com/moreinfo.htm?pid=14026&amp;section=PPC</a> </p>
<p>Cool blog by the way <img src='http://scorbs.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /><br />
Cheers</p>
<p>Ian</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Spain! by novecento</title>
		<link>http://scorbs.com/2008/06/23/spain#comment-38952</link>
		<dc:creator>novecento</dc:creator>
		<pubDate>Wed, 25 Jun 2008 10:45:44 +0000</pubDate>
		<guid isPermaLink="false">http://scorbs.com/2008/06/23/spain/#comment-38952</guid>
		<description>Waiting the fourth part of your series on Silverlight 2’s Parts &#38; States control model, i wish you good holidays in Spain! :D</description>
		<content:encoded><![CDATA[<p>Waiting the fourth part of your series on Silverlight 2’s Parts &amp; States control model, i wish you good holidays in Spain! <img src='http://scorbs.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Parts &#38; States Model with VisualStateManager (Part 3 of 4) by Neil Mosafi</title>
		<link>http://scorbs.com/2008/06/23/parts-states-model-with-visualstatemanager-part-3-of-4#comment-38769</link>
		<dc:creator>Neil Mosafi</dc:creator>
		<pubDate>Mon, 23 Jun 2008 22:13:21 +0000</pubDate>
		<guid isPermaLink="false">http://scorbs.com/2008/06/23/parts-states-model-with-visualstatemanager-part-3-of-4/#comment-38769</guid>
		<description>Hey Karen
Very informative, and I'm really looking forward to part 4!  Can you build User Controls with states?  I have tried adding the TemplateVisualStyle attribute to a user control and it doesn't show up in Blend when I am editing the control's xaml?
Cheers
Neil</description>
		<content:encoded><![CDATA[<p>Hey Karen<br />
Very informative, and I&#8217;m really looking forward to part 4!  Can you build User Controls with states?  I have tried adding the TemplateVisualStyle attribute to a user control and it doesn&#8217;t show up in Blend when I am editing the control&#8217;s xaml?<br />
Cheers<br />
Neil</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Parts &#38; States Model with VisualStateManager (Part 2 of 4) by Byron</title>
		<link>http://scorbs.com/2008/06/18/parts-states-model-with-visualstatemanager-part-2-of-4#comment-38671</link>
		<dc:creator>Byron</dc:creator>
		<pubDate>Mon, 23 Jun 2008 07:39:58 +0000</pubDate>
		<guid isPermaLink="false">http://scorbs.com/2008/06/18/parts-states-model-with-visualstatemanager-part-2-of-4/#comment-38671</guid>
		<description>would be nice to have a ? question mark as the indeterminate state marker. And check mark as the checkmark state instead of an X</description>
		<content:encoded><![CDATA[<p>would be nice to have a ? question mark as the indeterminate state marker. And check mark as the checkmark state instead of an X</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Parts &#38; States Model with VisualStateManager (Part 2 of 4) by Scott Barnes</title>
		<link>http://scorbs.com/2008/06/18/parts-states-model-with-visualstatemanager-part-2-of-4#comment-38287</link>
		<dc:creator>Scott Barnes</dc:creator>
		<pubDate>Sat, 21 Jun 2008 05:28:07 +0000</pubDate>
		<guid isPermaLink="false">http://scorbs.com/2008/06/18/parts-states-model-with-visualstatemanager-part-2-of-4/#comment-38287</guid>
		<description>The VisualState Manager just makes me all warm and fuzzy inside. It's one of these features I lurve a lot.

-
Scott Barnes
Product Manager (WPF/Silverlight)
Microsoft.</description>
		<content:encoded><![CDATA[<p>The VisualState Manager just makes me all warm and fuzzy inside. It&#8217;s one of these features I lurve a lot.</p>
<p>-<br />
Scott Barnes<br />
Product Manager (WPF/Silverlight)<br />
Microsoft.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on WPF Screen Saver Visual Studio Template! by Nathan</title>
		<link>http://scorbs.com/2006/12/21/wpf-screen-saver-template#comment-38179</link>
		<dc:creator>Nathan</dc:creator>
		<pubDate>Fri, 20 Jun 2008 14:42:12 +0000</pubDate>
		<guid isPermaLink="false">http://scorbs.com/2006/12/21/wpf-screen-saver-template/#comment-38179</guid>
		<description>Looks like this template works for VS2008 now.  Good job!  I'm writing a bubbles screensaver for my toddler to play with.</description>
		<content:encoded><![CDATA[<p>Looks like this template works for VS2008 now.  Good job!  I&#8217;m writing a bubbles screensaver for my toddler to play with.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Parts &#38; States Model with VisualStateManager (Part 2 of 4) by KierenH</title>
		<link>http://scorbs.com/2008/06/18/parts-states-model-with-visualstatemanager-part-2-of-4#comment-38176</link>
		<dc:creator>KierenH</dc:creator>
		<pubDate>Fri, 20 Jun 2008 14:30:31 +0000</pubDate>
		<guid isPermaLink="false">http://scorbs.com/2008/06/18/parts-states-model-with-visualstatemanager-part-2-of-4/#comment-38176</guid>
		<description>Second that! Nice post. I've always felt this kind of explicit control state model was missing from Wpf, and it's so easy!

It's hard to critic the pre-release doco, I just hope it gives the full picture as this walkthrough does.
Eg. Control contract, and sample ControlTemplate markup (which shows the VisualStateManager).

I often find theres to much description with Wpf doco, and not enough code   markup.</description>
		<content:encoded><![CDATA[<p>Second that! Nice post. I&#8217;ve always felt this kind of explicit control state model was missing from Wpf, and it&#8217;s so easy!</p>
<p>It&#8217;s hard to critic the pre-release doco, I just hope it gives the full picture as this walkthrough does.<br />
Eg. Control contract, and sample ControlTemplate markup (which shows the VisualStateManager).</p>
<p>I often find theres to much description with Wpf doco, and not enough code   markup.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Silverlight HTTP Networking Stack &#8211; Part 1 (Site of Origin Communication) by Eamon Nerbonne</title>
		<link>http://scorbs.com/2008/04/05/silverlight-http-networking-stack-part-1-site-of-origin-communication#comment-37968</link>
		<dc:creator>Eamon Nerbonne</dc:creator>
		<pubDate>Thu, 19 Jun 2008 14:25:16 +0000</pubDate>
		<guid isPermaLink="false">http://scorbs.com/2008/04/05/silverlight-http-networking-stack-part-1-site-of-origin-communication/#comment-37968</guid>
		<description>WebClient's DownloadString &#38; DownloadData methods are unfortunately very limited:

WebClient ignores HTTP headers concerning the encoding of the response.  This means that UTF-8 response will incorrectly be decoded using whatever is the default system code-page (and thus break extended characters very easily in an internationalization-dependent fashion).  This is most unfortunate; HTTP supports the specification of a character set via the MIME type (or an explicit header) - is there a chance this will be fixed?

Concretely, unless a developer is extremely careful, using WebClient will result in a broken program depending on where the silverlight app is run, and even if the developer is extremely careful, it's not possible to perform a robust http request using WebClient; instead, a rather complex series of fallbacks must be implemented using HttpRequest.  Even without encoding auto-detection, such an implementation is needlessly error-prone and difficult to test, and as such would be a prime candidate for inclusion in WebClient (which seems to be intended to be simple, after all).</description>
		<content:encoded><![CDATA[<p>WebClient&#8217;s DownloadString &amp; DownloadData methods are unfortunately very limited:</p>
<p>WebClient ignores HTTP headers concerning the encoding of the response.  This means that UTF-8 response will incorrectly be decoded using whatever is the default system code-page (and thus break extended characters very easily in an internationalization-dependent fashion).  This is most unfortunate; HTTP supports the specification of a character set via the MIME type (or an explicit header) - is there a chance this will be fixed?</p>
<p>Concretely, unless a developer is extremely careful, using WebClient will result in a broken program depending on where the silverlight app is run, and even if the developer is extremely careful, it&#8217;s not possible to perform a robust http request using WebClient; instead, a rather complex series of fallbacks must be implemented using HttpRequest.  Even without encoding auto-detection, such an implementation is needlessly error-prone and difficult to test, and as such would be a prime candidate for inclusion in WebClient (which seems to be intended to be simple, after all).</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Parts &#38; States Model with VisualStateManager (Part 2 of 4) by EriC#</title>
		<link>http://scorbs.com/2008/06/18/parts-states-model-with-visualstatemanager-part-2-of-4#comment-37958</link>
		<dc:creator>EriC#</dc:creator>
		<pubDate>Thu, 19 Jun 2008 13:06:18 +0000</pubDate>
		<guid isPermaLink="false">http://scorbs.com/2008/06/18/parts-states-model-with-visualstatemanager-part-2-of-4/#comment-37958</guid>
		<description>Excellent!</description>
		<content:encoded><![CDATA[<p>Excellent!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on WPF Screen Saver Visual Studio Template! by Roger</title>
		<link>http://scorbs.com/2006/12/21/wpf-screen-saver-template#comment-37802</link>
		<dc:creator>Roger</dc:creator>
		<pubDate>Wed, 18 Jun 2008 18:44:09 +0000</pubDate>
		<guid isPermaLink="false">http://scorbs.com/2006/12/21/wpf-screen-saver-template/#comment-37802</guid>
		<description>Any chance you could update the template for VS 2008?

Thanks!</description>
		<content:encoded><![CDATA[<p>Any chance you could update the template for VS 2008?</p>
<p>Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Silverlight HTTP Networking Stack - Part 3 (Configuring a Cross Domain Policy File) by Karen</title>
		<link>http://scorbs.com/2008/04/22/silverlight-http-networking-stack-part-3-configuring-a-cross-domain-policy-file#comment-37648</link>
		<dc:creator>Karen</dc:creator>
		<pubDate>Tue, 17 Jun 2008 17:14:13 +0000</pubDate>
		<guid isPermaLink="false">http://scorbs.com/2008/04/22/silverlight-http-networking-stack-part-3-configuring-a-cross-domain-policy-file/#comment-37648</guid>
		<description>Excellent catch.. yes, that is a typo.  It should be in the &lt;allow-from&gt; tag.  I've updated this post.</description>
		<content:encoded><![CDATA[<p>Excellent catch.. yes, that is a typo.  It should be in the <allow -from> tag.  I&#8217;ve updated this post.</allow></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Silverlight HTTP Networking Stack - Part 3 (Configuring a Cross Domain Policy File) by Paul Muston</title>
		<link>http://scorbs.com/2008/04/22/silverlight-http-networking-stack-part-3-configuring-a-cross-domain-policy-file#comment-37642</link>
		<dc:creator>Paul Muston</dc:creator>
		<pubDate>Tue, 17 Jun 2008 15:38:42 +0000</pubDate>
		<guid isPermaLink="false">http://scorbs.com/2008/04/22/silverlight-http-networking-stack-part-3-configuring-a-cross-domain-policy-file/#comment-37642</guid>
		<description>In example 1 you have the http-request-headers="Content-Type" in  element - is this correct?
http://msdn.microsoft.com/en-us/library/cc197955(VS.95).aspx shows it in the  element. Typo - you are also self closing the  element.</description>
		<content:encoded><![CDATA[<p>In example 1 you have the http-request-headers=&#8221;Content-Type&#8221; in  element - is this correct?<br />
<a href="http://msdn.microsoft.com/en-us/library/cc197955" rel="nofollow">http://msdn.microsoft.com/en-us/library/cc197955</a>(VS.95).aspx shows it in the  element. Typo - you are also self closing the  element.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Silverlight HTTP Networking Stack &#8211; Part 1 (Site of Origin Communication) by Andy</title>
		<link>http://scorbs.com/2008/04/05/silverlight-http-networking-stack-part-1-site-of-origin-communication#comment-37624</link>
		<dc:creator>Andy</dc:creator>
		<pubDate>Tue, 17 Jun 2008 07:33:14 +0000</pubDate>
		<guid isPermaLink="false">http://scorbs.com/2008/04/05/silverlight-http-networking-stack-part-1-site-of-origin-communication/#comment-37624</guid>
		<description>Hi,

With ref to synch calls, i appreciate that asynch are largely preferable and we would be using them if we could but we are building a mapping site which calls to a GIS application for content. This application solely supports synchronous calls and so we are now in a position of looking for another GIS engine or using another web delivery mechanism...

Andy</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>With ref to synch calls, i appreciate that asynch are largely preferable and we would be using them if we could but we are building a mapping site which calls to a GIS application for content. This application solely supports synchronous calls and so we are now in a position of looking for another GIS engine or using another web delivery mechanism&#8230;</p>
<p>Andy</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Parts &#38; States Model with VisualStateManager (Part 1 of 4) by Neil Mosafi</title>
		<link>http://scorbs.com/2008/06/11/parts-states-model-with-visualstatemanager-part-1-of#comment-37534</link>
		<dc:creator>Neil Mosafi</dc:creator>
		<pubDate>Mon, 16 Jun 2008 08:47:17 +0000</pubDate>
		<guid isPermaLink="false">http://scorbs.com/2008/06/11/parts-states-model-with-visualstatemanager-part-1-of/#comment-37534</guid>
		<description>Thanks for the response Karen.  I do really like the states model and the blend support; I remember when working with a graphic designer on a previous WPF project we (the devs) ended up doing most of the work on control state transitions cos the old WPF way of doing things wasn't very designer friendly at all.

I'll be looking forward to Part 2!</description>
		<content:encoded><![CDATA[<p>Thanks for the response Karen.  I do really like the states model and the blend support; I remember when working with a graphic designer on a previous WPF project we (the devs) ended up doing most of the work on control state transitions cos the old WPF way of doing things wasn&#8217;t very designer friendly at all.</p>
<p>I&#8217;ll be looking forward to Part 2!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Florida by Ben Hayat</title>
		<link>http://scorbs.com/2008/06/10/florida#comment-37061</link>
		<dc:creator>Ben Hayat</dc:creator>
		<pubDate>Fri, 13 Jun 2008 01:52:03 +0000</pubDate>
		<guid isPermaLink="false">http://scorbs.com/2008/06/10/florida/#comment-37061</guid>
		<description>&#62;&#62;finally, a day at the beach:  my feet in miami.</description>
		<content:encoded><![CDATA[<p>&gt;&gt;finally, a day at the beach:  my feet in miami.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Parts &#38; States Model with VisualStateManager (Part 1 of 4) by Karen</title>
		<link>http://scorbs.com/2008/06/11/parts-states-model-with-visualstatemanager-part-1-of#comment-37058</link>
		<dc:creator>Karen</dc:creator>
		<pubDate>Fri, 13 Jun 2008 00:49:18 +0000</pubDate>
		<guid isPermaLink="false">http://scorbs.com/2008/06/11/parts-states-model-with-visualstatemanager-part-1-of/#comment-37058</guid>
		<description>@Neil:  All great questions!  I'll dig much more into the WPF story for Parts &#038; States Model in the final post of this series.  But the short version is:  Blend's support for triggers in WPF controls is not going to change - you'll still have the support it has today.  Moving forward, we will be adding VSM to WPF as well, which means that you'll be able to more easily move SL templates to WPF controls.  At that point, you'll also have the parts &#038; states Blend experience for WPF too.

The naming convention in Silverlight is slightly different - we are not using the underscore PART_ convention.

Thanks for the skin recommendation - CheckBox is a good control to give an intro on, since it has multiple state groups.  But I promise to do a post later that goes into a more complex skin.</description>
		<content:encoded><![CDATA[<p>@Neil:  All great questions!  I&#8217;ll dig much more into the WPF story for Parts &#038; States Model in the final post of this series.  But the short version is:  Blend&#8217;s support for triggers in WPF controls is not going to change - you&#8217;ll still have the support it has today.  Moving forward, we will be adding VSM to WPF as well, which means that you&#8217;ll be able to more easily move SL templates to WPF controls.  At that point, you&#8217;ll also have the parts &#038; states Blend experience for WPF too.</p>
<p>The naming convention in Silverlight is slightly different - we are not using the underscore PART_ convention.</p>
<p>Thanks for the skin recommendation - CheckBox is a good control to give an intro on, since it has multiple state groups.  But I promise to do a post later that goes into a more complex skin.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Photo Screen Saver by Wallace</title>
		<link>http://scorbs.com/2006/12/21/photo-screen-saver#comment-37035</link>
		<dc:creator>Wallace</dc:creator>
		<pubDate>Thu, 12 Jun 2008 15:25:51 +0000</pubDate>
		<guid isPermaLink="false">http://scorbs.com/2006/12/21/photo-screen-saver/#comment-37035</guid>
		<description>That's a great screen saver. To make this perfect, can you please:
1. Allow user to control the fade in/out speed
2. Allow user to control the backdrop color/pattern
3. Increase the max. size of each photo
4. Scatter the photos more over the screen rather than just on the center of the screen.

Looking forward for this perfect photo screen saver comes out.

=)</description>
		<content:encoded><![CDATA[<p>That&#8217;s a great screen saver. To make this perfect, can you please:<br />
1. Allow user to control the fade in/out speed<br />
2. Allow user to control the backdrop color/pattern<br />
3. Increase the max. size of each photo<br />
4. Scatter the photos more over the screen rather than just on the center of the screen.</p>
<p>Looking forward for this perfect photo screen saver comes out.</p>
<p>=)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Parts &#38; States Model with VisualStateManager (Part 1 of 4) by Neil Mosafi</title>
		<link>http://scorbs.com/2008/06/11/parts-states-model-with-visualstatemanager-part-1-of#comment-37020</link>
		<dc:creator>Neil Mosafi</dc:creator>
		<pubDate>Thu, 12 Jun 2008 11:28:03 +0000</pubDate>
		<guid isPermaLink="false">http://scorbs.com/2008/06/11/parts-states-model-with-visualstatemanager-part-1-of/#comment-37020</guid>
		<description>Great post Karen and well explained.

A couple of questions from a WPF developer... firstly I understand that the state model will be added to WPF in the future - does this mean we should stop using Triggers in our WPF application and use States instead if we want Blend to support skinning our apps?  Will WPF's inbuilt controls get states added to them?

Secondly, WPF already has the Parts model and it's recommended by Microsoft to prefix all Parts with the PART_ prefix.  Is this still recommended in Silverlight?

Oh - how about in Part2 skinning another control, I've already seen lots of examples on CheckBox skinning!

Cheers!
Neil</description>
		<content:encoded><![CDATA[<p>Great post Karen and well explained.</p>
<p>A couple of questions from a WPF developer&#8230; firstly I understand that the state model will be added to WPF in the future - does this mean we should stop using Triggers in our WPF application and use States instead if we want Blend to support skinning our apps?  Will WPF&#8217;s inbuilt controls get states added to them?</p>
<p>Secondly, WPF already has the Parts model and it&#8217;s recommended by Microsoft to prefix all Parts with the PART_ prefix.  Is this still recommended in Silverlight?</p>
<p>Oh - how about in Part2 skinning another control, I&#8217;ve already seen lots of examples on CheckBox skinning!</p>
<p>Cheers!<br />
Neil</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Parts &#38; States Model with VisualStateManager (Part 1 of 4) by nemiso</title>
		<link>http://scorbs.com/2008/06/11/parts-states-model-with-visualstatemanager-part-1-of#comment-37002</link>
		<dc:creator>nemiso</dc:creator>
		<pubDate>Thu, 12 Jun 2008 05:03:42 +0000</pubDate>
		<guid isPermaLink="false">http://scorbs.com/2008/06/11/parts-states-model-with-visualstatemanager-part-1-of/#comment-37002</guid>
		<description>this is a relly good post;
I really want to know how to make a custom state.
I'm looking forward to seeing your next post.</description>
		<content:encoded><![CDATA[<p>this is a relly good post;<br />
I really want to know how to make a custom state.<br />
I&#8217;m looking forward to seeing your next post.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on TechEd Samples by Fabio Matsui</title>
		<link>http://scorbs.com/2008/06/10/teched-samples#comment-36958</link>
		<dc:creator>Fabio Matsui</dc:creator>
		<pubDate>Wed, 11 Jun 2008 18:02:04 +0000</pubDate>
		<guid isPermaLink="false">http://scorbs.com/2008/06/10/teched-samples/#comment-36958</guid>
		<description>Hi Sakthi, perhaps I can help. When I clicked on the pptx's they came down as .zip.  I renamed from .zip to .pptx and that worked.  As it seems, Office 2007 docs are zipped XML files.</description>
		<content:encoded><![CDATA[<p>Hi Sakthi, perhaps I can help. When I clicked on the pptx&#8217;s they came down as .zip.  I renamed from .zip to .pptx and that worked.  As it seems, Office 2007 docs are zipped XML files.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on TechEd Samples by Karen</title>
		<link>http://scorbs.com/2008/06/10/teched-samples#comment-36951</link>
		<dc:creator>Karen</dc:creator>
		<pubDate>Wed, 11 Jun 2008 16:32:27 +0000</pubDate>
		<guid isPermaLink="false">http://scorbs.com/2008/06/10/teched-samples/#comment-36951</guid>
		<description>The videos have not yet been published, but I will add links when they are.  Thanks!</description>
		<content:encoded><![CDATA[<p>The videos have not yet been published, but I will add links when they are.  Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Silverlight 2 Beta2 by Rod</title>
		<link>http://scorbs.com/2008/06/10/silverlight-2-beta2#comment-36950</link>
		<dc:creator>Rod</dc:creator>
		<pubDate>Wed, 11 Jun 2008 16:14:41 +0000</pubDate>
		<guid isPermaLink="false">http://scorbs.com/2008/06/10/silverlight-2-beta2/#comment-36950</guid>
		<description>I am having an issue with the Slider control.  None of the MouseEvents are being raised.  I am using a solution that I converted from Beta 1 to Beta 2.  Any answers for me?</description>
		<content:encoded><![CDATA[<p>I am having an issue with the Slider control.  None of the MouseEvents are being raised.  I am using a solution that I converted from Beta 1 to Beta 2.  Any answers for me?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on TechEd Samples by Alexey</title>
		<link>http://scorbs.com/2008/06/10/teched-samples#comment-36943</link>
		<dc:creator>Alexey</dc:creator>
		<pubDate>Wed, 11 Jun 2008 14:37:35 +0000</pubDate>
		<guid isPermaLink="false">http://scorbs.com/2008/06/10/teched-samples/#comment-36943</guid>
		<description>Hi,

Could you tell me where can i download video of this presenatation?

Thanks,
Alexey.</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>Could you tell me where can i download video of this presenatation?</p>
<p>Thanks,<br />
Alexey.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Silverlight HTTP Networking Stack - Part 3 (Configuring a Cross Domain Policy File) by Steve</title>
		<link>http://scorbs.com/2008/04/22/silverlight-http-networking-stack-part-3-configuring-a-cross-domain-policy-file#comment-36912</link>
		<dc:creator>Steve</dc:creator>
		<pubDate>Wed, 11 Jun 2008 06:38:53 +0000</pubDate>
		<guid isPermaLink="false">http://scorbs.com/2008/04/22/silverlight-http-networking-stack-part-3-configuring-a-cross-domain-policy-file/#comment-36912</guid>
		<description>I would like to see an code example using YouTube or at least know why it cannot be created.</description>
		<content:encoded><![CDATA[<p>I would like to see an code example using YouTube or at least know why it cannot be created.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Silverlight HTTP Networking Stack &#8211; Part 1 (Site of Origin Communication) by Steve</title>
		<link>http://scorbs.com/2008/04/05/silverlight-http-networking-stack-part-1-site-of-origin-communication#comment-36910</link>
		<dc:creator>Steve</dc:creator>
		<pubDate>Wed, 11 Jun 2008 06:18:49 +0000</pubDate>
		<guid isPermaLink="false">http://scorbs.com/2008/04/05/silverlight-http-networking-stack-part-1-site-of-origin-communication/#comment-36910</guid>
		<description>Interesting, and i see why you when this route.

What I would like to see is example of searching and downloading YouTube videos.   I believe these API are created to build RIA sites that consume you own content, but not the content from other sites, or at least friendly sites.

I wish someone would just say  "YouTube and Google Content are just off limits to silverlight, no mater what type of cross domain support we provide"

IS THIS TRUE?  if not can you provide a simple example?</description>
		<content:encoded><![CDATA[<p>Interesting, and i see why you when this route.</p>
<p>What I would like to see is example of searching and downloading YouTube videos.   I believe these API are created to build RIA sites that consume you own content, but not the content from other sites, or at least friendly sites.</p>
<p>I wish someone would just say  &#8220;YouTube and Google Content are just off limits to silverlight, no mater what type of cross domain support we provide&#8221;</p>
<p>IS THIS TRUE?  if not can you provide a simple example?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Silverlight 2 Beta2 by Dan</title>
		<link>http://scorbs.com/2008/06/10/silverlight-2-beta2#comment-36900</link>
		<dc:creator>Dan</dc:creator>
		<pubDate>Wed, 11 Jun 2008 03:40:48 +0000</pubDate>
		<guid isPermaLink="false">http://scorbs.com/2008/06/10/silverlight-2-beta2/#comment-36900</guid>
		<description>I met a problem when I implemented Silverlight 2 in my project.

Description:

A Live Search box will be shown after you input your keywords and click "GO". Now the problems lie in that:

1, The result box is displayed behind the Silverlight area; while in reality it is supposed to be displayed in front of the Silverlight. BTW: I set Silverlight area  zindex=0 and Search result box zindex=65534 by default.

2, When the result box is displayed behind the Silverlight, the user can still do some operation on the search result box in firefox browser while can not to do anything in IE browser.

These two problems are to be tackled because they have now blocked my work. Maybe the silverlight must be show before all of element. I am eager for you help!

Thanks,
Dan</description>
		<content:encoded><![CDATA[<p>I met a problem when I implemented Silverlight 2 in my project.</p>
<p>Description:</p>
<p>A Live Search box will be shown after you input your keywords and click &#8220;GO&#8221;. Now the problems lie in that:</p>
<p>1, The result box is displayed behind the Silverlight area; while in reality it is supposed to be displayed in front of the Silverlight. BTW: I set Silverlight area  zindex=0 and Search result box zindex=65534 by default.</p>
<p>2, When the result box is displayed behind the Silverlight, the user can still do some operation on the search result box in firefox browser while can not to do anything in IE browser.</p>
<p>These two problems are to be tackled because they have now blocked my work. Maybe the silverlight must be show before all of element. I am eager for you help!</p>
<p>Thanks,<br />
Dan</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on TechEd Samples by Sakthi Sai Saranyan</title>
		<link>http://scorbs.com/2008/06/10/teched-samples#comment-36892</link>
		<dc:creator>Sakthi Sai Saranyan</dc:creator>
		<pubDate>Wed, 11 Jun 2008 01:42:12 +0000</pubDate>
		<guid isPermaLink="false">http://scorbs.com/2008/06/10/teched-samples/#comment-36892</guid>
		<description>Hi, I was able　to work with the samples. Nice work. Thank you.
But, i could not find the ppts in the slides link.</description>
		<content:encoded><![CDATA[<p>Hi, I was able　to work with the samples. Nice work. Thank you.<br />
But, i could not find the ppts in the slides link.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Silverlight 2 Beta2 by Masaki(JP)</title>
		<link>http://scorbs.com/2008/06/10/silverlight-2-beta2#comment-36888</link>
		<dc:creator>Masaki(JP)</dc:creator>
		<pubDate>Wed, 11 Jun 2008 01:11:54 +0000</pubDate>
		<guid isPermaLink="false">http://scorbs.com/2008/06/10/silverlight-2-beta2/#comment-36888</guid>
		<description>&#62; HttpWebRequest’s delegates are called on a new non-UI thread.
surprised! the program which was running till yesterday stopped!!

&#62; For an example
thank you.

may I translate into Japanese and put on my blog about "Silverlight HTTP Networking Stack" part 1 to 3?
(this is machine translation. I am sorry if it is strange English.)</description>
		<content:encoded><![CDATA[<p>&gt; HttpWebRequest’s delegates are called on a new non-UI thread.<br />
surprised! the program which was running till yesterday stopped!!</p>
<p>&gt; For an example<br />
thank you.</p>
<p>may I translate into Japanese and put on my blog about &#8220;Silverlight HTTP Networking Stack&#8221; part 1 to 3?<br />
(this is machine translation. I am sorry if it is strange English.)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on TechEd Samples by Fabio Matsui</title>
		<link>http://scorbs.com/2008/06/10/teched-samples#comment-36876</link>
		<dc:creator>Fabio Matsui</dc:creator>
		<pubDate>Tue, 10 Jun 2008 21:56:23 +0000</pubDate>
		<guid isPermaLink="false">http://scorbs.com/2008/06/10/teched-samples/#comment-36876</guid>
		<description>Awesome presentations, I recommend to anyone that wants to understand the new control skinning framework.  I believe seeing the videos is very helpful so you can see step-by-step (slide code) how it all happens.</description>
		<content:encoded><![CDATA[<p>Awesome presentations, I recommend to anyone that wants to understand the new control skinning framework.  I believe seeing the videos is very helpful so you can see step-by-step (slide code) how it all happens.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on TechEd Orlando by david</title>
		<link>http://scorbs.com/2008/06/03/teched-orlando#comment-36781</link>
		<dc:creator>david</dc:creator>
		<pubDate>Tue, 10 Jun 2008 05:01:22 +0000</pubDate>
		<guid isPermaLink="false">http://scorbs.com/2008/06/03/teched-orlando/#comment-36781</guid>
		<description>I saw beta 2 is out--will we see the samples soon? Or are they already posted and I don't know where to look?</description>
		<content:encoded><![CDATA[<p>I saw beta 2 is out&#8211;will we see the samples soon? Or are they already posted and I don&#8217;t know where to look?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on FlickrViewr by Arne Madsen</title>
		<link>http://scorbs.com/2008/03/14/flickrviewr#comment-36466</link>
		<dc:creator>Arne Madsen</dc:creator>
		<pubDate>Sun, 08 Jun 2008 12:48:57 +0000</pubDate>
		<guid isPermaLink="false">http://scorbs.com/2008/03/14/flickrviewr/#comment-36466</guid>
		<description>Hi Karen,
Will FlickrViewer demo be converted to SL2 Beta 2?

I'm having various issues, especially with the DialogResult class

Rgds,
Arne</description>
		<content:encoded><![CDATA[<p>Hi Karen,<br />
Will FlickrViewer demo be converted to SL2 Beta 2?</p>
<p>I&#8217;m having various issues, especially with the DialogResult class</p>
<p>Rgds,<br />
Arne</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on TechEd Orlando by Karen</title>
		<link>http://scorbs.com/2008/06/03/teched-orlando#comment-36019</link>
		<dc:creator>Karen</dc:creator>
		<pubDate>Thu, 05 Jun 2008 21:13:14 +0000</pubDate>
		<guid isPermaLink="false">http://scorbs.com/2008/06/03/teched-orlando/#comment-36019</guid>
		<description>I will be posting the sample code as soon as Beta2 is out the door!

(Thanks Michael for the feedback.  If you have a specific scenario that you're blocked on, could you also share it? Thanks!)</description>
		<content:encoded><![CDATA[<p>I will be posting the sample code as soon as Beta2 is out the door!</p>
<p>(Thanks Michael for the feedback.  If you have a specific scenario that you&#8217;re blocked on, could you also share it? Thanks!)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on TechEd Orlando by Michael Sync</title>
		<link>http://scorbs.com/2008/06/03/teched-orlando#comment-35898</link>
		<dc:creator>Michael Sync</dc:creator>
		<pubDate>Thu, 05 Jun 2008 01:30:52 +0000</pubDate>
		<guid isPermaLink="false">http://scorbs.com/2008/06/03/teched-orlando/#comment-35898</guid>
		<description>Is it possible to change the style after setting? I really don't like write-once style.</description>
		<content:encoded><![CDATA[<p>Is it possible to change the style after setting? I really don&#8217;t like write-once style.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on TechEd Orlando by david</title>
		<link>http://scorbs.com/2008/06/03/teched-orlando#comment-35877</link>
		<dc:creator>david</dc:creator>
		<pubDate>Wed, 04 Jun 2008 21:38:36 +0000</pubDate>
		<guid isPermaLink="false">http://scorbs.com/2008/06/03/teched-orlando/#comment-35877</guid>
		<description>i attended your silverlight controls framework what's-in-your-toolbox session today (great job, by the way) and was wondering if the source of your examples is or will be available. I was told the dvd/cd and available on the web version will only be a video, so I'm hoping there will be some other way of getting the samples (this is the first one I've really been interested in).</description>
		<content:encoded><![CDATA[<p>i attended your silverlight controls framework what&#8217;s-in-your-toolbox session today (great job, by the way) and was wondering if the source of your examples is or will be available. I was told the dvd/cd and available on the web version will only be a video, so I&#8217;m hoping there will be some other way of getting the samples (this is the first one I&#8217;ve really been interested in).</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on TechEd Orlando by Arthur</title>
		<link>http://scorbs.com/2008/06/03/teched-orlando#comment-35864</link>
		<dc:creator>Arthur</dc:creator>
		<pubDate>Wed, 04 Jun 2008 19:39:35 +0000</pubDate>
		<guid isPermaLink="false">http://scorbs.com/2008/06/03/teched-orlando/#comment-35864</guid>
		<description>Hi Karen, i'm currently listening on your "Silverlight" controls session on TechEd 2008...was wondering if you could provide me the powerpoint slide and code you've used for this session?  If it's ok with you?  Thank you...


God Bless.

Arthur Ochoa
from Orange County, CA</description>
		<content:encoded><![CDATA[<p>Hi Karen, i&#8217;m currently listening on your &#8220;Silverlight&#8221; controls session on TechEd 2008&#8230;was wondering if you could provide me the powerpoint slide and code you&#8217;ve used for this session?  If it&#8217;s ok with you?  Thank you&#8230;</p>
<p>God Bless.</p>
<p>Arthur Ochoa<br />
from Orange County, CA</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on VS Template: Flexible Application by Marco</title>
		<link>http://scorbs.com/2006/06/04/vs-template-flexible-application#comment-35824</link>
		<dc:creator>Marco</dc:creator>
		<pubDate>Wed, 04 Jun 2008 12:26:39 +0000</pubDate>
		<guid isPermaLink="false">http://scorbs.com/2006/06/04/vs-template-flexible-application/#comment-35824</guid>
		<description>Have been looking for something some time. Is really helpfull, thanks.

I have some questions though.
Is there some way that i can remove the left and right button when i run in standalone app mode?
And is it possible to run the app in maximized screenstate from start? In WPF application i can set this on the window class but not sure how to do this now.</description>
		<content:encoded><![CDATA[<p>Have been looking for something some time. Is really helpfull, thanks.</p>
<p>I have some questions though.<br />
Is there some way that i can remove the left and right button when i run in standalone app mode?<br />
And is it possible to run the app in maximized screenstate from start? In WPF application i can set this on the window class but not sure how to do this now.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on TechEd Orlando by Ben Hayat</title>
		<link>http://scorbs.com/2008/06/03/teched-orlando#comment-35749</link>
		<dc:creator>Ben Hayat</dc:creator>
		<pubDate>Wed, 04 Jun 2008 01:41:03 +0000</pubDate>
		<guid isPermaLink="false">http://scorbs.com/2008/06/03/teched-orlando/#comment-35749</guid>
		<description>Karen; I love this new VSM! Thank you to you all!

..Ben</description>
		<content:encoded><![CDATA[<p>Karen; I love this new VSM! Thank you to you all!</p>
<p>..Ben</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on FlickrViewr by Michael Iantosca</title>
		<link>http://scorbs.com/2008/03/14/flickrviewr#comment-33973</link>
		<dc:creator>Michael Iantosca</dc:creator>
		<pubDate>Fri, 23 May 2008 15:53:31 +0000</pubDate>
		<guid isPermaLink="false">http://scorbs.com/2008/03/14/flickrviewr/#comment-33973</guid>
		<description>Hi there,

I am trying to use databinding with your HorizonatalWrapPanel but having issues. Not sure if I have to add additional methods to your class to allow for databinding a collection to it.

I was going down the path of creating an ItemsControl and using the HorizontalWrapPanel as the ItemsPaneltemplate and a user control as the DataTemplate in the ItemsControl.ControlTemplate. But when I run it nothing shows up.

Any guidance would be great

thanks
Michael</description>
		<content:encoded><![CDATA[<p>Hi there,</p>
<p>I am trying to use databinding with your HorizonatalWrapPanel but having issues. Not sure if I have to add additional methods to your class to allow for databinding a collection to it.</p>
<p>I was going down the path of creating an ItemsControl and using the HorizontalWrapPanel as the ItemsPaneltemplate and a user control as the DataTemplate in the ItemsControl.ControlTemplate. But when I run it nothing shows up.</p>
<p>Any guidance would be great</p>
<p>thanks<br />
Michael</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Silverlight HTTP Networking Stack - Part 3 (Configuring a Cross Domain Policy File) by Masaki(JP)</title>
		<link>http://scorbs.com/2008/04/22/silverlight-http-networking-stack-part-3-configuring-a-cross-domain-policy-file#comment-33686</link>
		<dc:creator>Masaki(JP)</dc:creator>
		<pubDate>Wed, 21 May 2008 01:05:15 +0000</pubDate>
		<guid isPermaLink="false">http://scorbs.com/2008/04/22/silverlight-http-networking-stack-part-3-configuring-a-cross-domain-policy-file/#comment-33686</guid>
		<description>Great!
Can I translate to Japanese, and carry to my blog?</description>
		<content:encoded><![CDATA[<p>Great!<br />
Can I translate to Japanese, and carry to my blog?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on XBAP &#38; Trust Levels by Alvin B</title>
		<link>http://scorbs.com/2007/01/10/xbap-trust-levels#comment-33621</link>
		<dc:creator>Alvin B</dc:creator>
		<pubDate>Tue, 20 May 2008 15:17:06 +0000</pubDate>
		<guid isPermaLink="false">http://scorbs.com/2007/01/10/xbap-trust-levels/#comment-33621</guid>
		<description>I would like my xbap to write back to the browser accessing the DOM model and Javascript. Reason: My app would now be able to chain events from the XBAP to the browser. Note, this is possible today using managed user controls and the appropriate interfaces so the feature release would not open any hole.</description>
		<content:encoded><![CDATA[<p>I would like my xbap to write back to the browser accessing the DOM model and Javascript. Reason: My app would now be able to chain events from the XBAP to the browser. Note, this is possible today using managed user controls and the appropriate interfaces so the feature release would not open any hole.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on .NET Framework 3.0 &#038; Dev Community Site by Lucas Struye</title>
		<link>http://scorbs.com/2006/06/12/net-framework-30-and-developer-community-site#comment-32975</link>
		<dc:creator>Lucas Struye</dc:creator>
		<pubDate>Wed, 14 May 2008 20:53:44 +0000</pubDate>
		<guid isPermaLink="false">http://scorbs.com/2006/06/12/net-framework-30-and-developer-community-site/#comment-32975</guid>
		<description>Not much on my mind right now, but it is not important. I have just been letting everything happen without me. I just do not have anything to say right now.</description>
		<content:encoded><![CDATA[<p>Not much on my mind right now, but it is not important. I have just been letting everything happen without me. I just do not have anything to say right now.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Rainy Pike Place Market by charles binns</title>
		<link>http://scorbs.com/2008/04/27/rainy-pike-place-market#comment-32885</link>
		<dc:creator>charles binns</dc:creator>
		<pubDate>Tue, 13 May 2008 19:16:02 +0000</pubDate>
		<guid isPermaLink="false">http://scorbs.com/2008/04/27/rainy-pike-place-market/#comment-32885</guid>
		<description>The  pictures really capture the feeling of evening drawing in.  The photo of the cobblestones is a great study of light.</description>
		<content:encoded><![CDATA[<p>The  pictures really capture the feeling of evening drawing in.  The photo of the cobblestones is a great study of light.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on &#34;Badass&#34; Photographer Shot by charles binns</title>
		<link>http://scorbs.com/2007/05/17/badass-photographer-shot#comment-32884</link>
		<dc:creator>charles binns</dc:creator>
		<pubDate>Tue, 13 May 2008 19:10:07 +0000</pubDate>
		<guid isPermaLink="false">http://scorbs.com/2007/05/17/badass-photographer-shot/#comment-32884</guid>
		<description>The second photo would look great as a high contrast black &#38; white shot.</description>
		<content:encoded><![CDATA[<p>The second photo would look great as a high contrast black &amp; white shot.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on FontPlayer XBAP by John Lomma</title>
		<link>http://scorbs.com/2006/08/11/fontplayer-xbap#comment-32776</link>
		<dc:creator>John Lomma</dc:creator>
		<pubDate>Mon, 12 May 2008 17:54:30 +0000</pubDate>
		<guid isPermaLink="false">http://scorbs.com/2006/08/11/fontplayer-xbap/#comment-32776</guid>
		<description>Is XBAP support on the desktop provided by the silverlight plugin?</description>
		<content:encoded><![CDATA[<p>Is XBAP support on the desktop provided by the silverlight plugin?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Vista &#38; Glass by John Lomma</title>
		<link>http://scorbs.com/2006/08/26/vista-glass#comment-32774</link>
		<dc:creator>John Lomma</dc:creator>
		<pubDate>Mon, 12 May 2008 17:41:48 +0000</pubDate>
		<guid isPermaLink="false">http://scorbs.com/2006/08/26/vista-glass/#comment-32774</guid>
		<description>Ahh, the vista glass interface.  It is beautiful, but man... I turned it all back to the regular old win 2000 interface.  I needed that 40 megs of ram for other things :-)

Crysis - still only getting 20FPS though &#38; VS2008 seems to go really slow when the DotNetNuke source project is open.

Just curious, I wonder if the amount of ram used by the interface differs if your resolution is 1920x1280 or something smaller like 1280x1024.  

Also curious, VS2008... when opening large projects, wonder if there are a few options that can be changed to speed up the responsiveness on some pentium 4's.  I really notice a difference running it on XP &#38; a P4 3.2Ghz w/ 2gigs RAM V.S. Vista and just a slightly better Pentium D 2.8Ghz w/2gigs of similar speed RAM.

Thanks for the great post!

John</description>
		<content:encoded><![CDATA[<p>Ahh, the vista glass interface.  It is beautiful, but man&#8230; I turned it all back to the regular old win 2000 interface.  I needed that 40 megs of ram for other things <img src='http://scorbs.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /><br />
Crysis - still only getting 20FPS though &amp; VS2008 seems to go really slow when the DotNetNuke source project is open.</p>
<p>Just curious, I wonder if the amount of ram used by the interface differs if your resolution is 1920&#215;1280 or something smaller like 1280&#215;1024.  </p>
<p>Also curious, VS2008&#8230; when opening large projects, wonder if there are a few options that can be changed to speed up the responsiveness on some pentium 4&#8217;s.  I really notice a difference running it on XP &amp; a P4 3.2Ghz w/ 2gigs RAM V.S. Vista and just a slightly better Pentium D 2.8Ghz w/2gigs of similar speed RAM.</p>
<p>Thanks for the great post!</p>
<p>John</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Angkor in B&#038;W by Duke of Con Dao</title>
		<link>http://scorbs.com/2006/01/06/angkor-in-bw#comment-32588</link>
		<dc:creator>Duke of Con Dao</dc:creator>
		<pubDate>Sun, 11 May 2008 17:29:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.scorbs.com/2006/01/06/angkor-in-bw/#comment-32588</guid>
		<description>great pictures of Angkor Wat! I was there for the first time 11 years ago and have gone back a few times since. I miss the old days when there was a big chance you might blow your leg off by a quck detour through the jungle. 

I recommend that you get to Bagan (Pagan) in Burma (Myanmar) before that country opens up... 

cheers</description>
		<content:encoded><![CDATA[<p>great pictures of Angkor Wat! I was there for the first time 11 years ago and have gone back a few times since. I miss the old days when there was a big chance you might blow your leg off by a quck detour through the jungle. </p>
<p>I recommend that you get to Bagan (Pagan) in Burma (Myanmar) before that country opens up&#8230; </p>
<p>cheers</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Silverlight HTTP Networking Stack - Part 2 (Cross Domain Communication Overview) by Jeff Handley</title>
		<link>http://scorbs.com/2008/04/15/silverlight-http-networking-stack-part-2-cross-domain-communication-overview#comment-32445</link>
		<dc:creator>Jeff Handley</dc:creator>
		<pubDate>Fri, 09 May 2008 21:51:41 +0000</pubDate>
		<guid isPermaLink="false">http://scorbs.com/2008/04/15/silverlight-http-networking-stack-part-2-cross-domain-communication-overview/#comment-32445</guid>
		<description>I didn't see the underscore or dash characters included, and they would need to be included in the allowed set.

Thanks,
Jeff</description>
		<content:encoded><![CDATA[<p>I didn&#8217;t see the underscore or dash characters included, and they would need to be included in the allowed set.</p>
<p>Thanks,<br />
Jeff</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Vista &#38; Glass by NickelGreen</title>
		<link>http://scorbs.com/2006/08/26/vista-glass#comment-32436</link>
		<dc:creator>NickelGreen</dc:creator>
		<pubDate>Fri, 09 May 2008 19:24:39 +0000</pubDate>
		<guid isPermaLink="false">http://scorbs.com/2006/08/26/vista-glass/#comment-32436</guid>
		<description>Cool. 
Another guy who likes the frost theme this way.
I used it by default since the very first day with Vista Ultimate.
Sincerely i think too it's the best neutral color scheme for any desktop picture you have.
For desktop image i prefer "green" photos with meadows in general or grass.
The leaves let the applicatio bar transparency to result more evident.</description>
		<content:encoded><![CDATA[<p>Cool.<br />
Another guy who likes the frost theme this way.<br />
I used it by default since the very first day with Vista Ultimate.<br />
Sincerely i think too it&#8217;s the best neutral color scheme for any desktop picture you have.<br />
For desktop image i prefer &#8220;green&#8221; photos with meadows in general or grass.<br />
The leaves let the applicatio bar transparency to result more evident.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Rainy Pike Place Market by Karen</title>
		<link>http://scorbs.com/2008/04/27/rainy-pike-place-market#comment-31648</link>
		<dc:creator>Karen</dc:creator>
		<pubDate>Thu, 01 May 2008 18:52:37 +0000</pubDate>
		<guid isPermaLink="false">http://scorbs.com/2008/04/27/rainy-pike-place-market/#comment-31648</guid>
		<description>:)  Well, there's  also a lot going on there with exposure and what not too.  (I swear, I didn't doctor the sky!)

Anyways, glad you enjoyed...</description>
		<content:encoded><![CDATA[<p> <img src='http://scorbs.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Well, there&#8217;s  also a lot going on there with exposure and what not too.  (I swear, I didn&#8217;t doctor the sky!)</p>
<p>Anyways, glad you enjoyed&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Silverlight HTTP Networking Stack - Part 2 (Cross Domain Communication Overview) by Stuart Carnie</title>
		<link>http://scorbs.com/2008/04/15/silverlight-http-networking-stack-part-2-cross-domain-communication-overview#comment-31640</link>
		<dc:creator>Stuart Carnie</dc:creator>
		<pubDate>Thu, 01 May 2008 17:07:00 +0000</pubDate>
		<guid isPermaLink="false">http://scorbs.com/2008/04/15/silverlight-http-networking-stack-part-2-cross-domain-communication-overview/#comment-31640</guid>
		<description>Can a path segment of a cross domain request contain parenthesis?

e.g.

http://myhost/base/accounts(A1094)?orderby=Name</description>
		<content:encoded><![CDATA[<p>Can a path segment of a cross domain request contain parenthesis?</p>
<p>e.g.</p>
<p><a href="http://myhost/base/accounts" rel="nofollow">http://myhost/base/accounts</a>(A1094)?orderby=Name</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Dynamic Page Served (once) in 2.484 seconds -->
