<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Update 2: Displaying background activity in a Silverlight RIA application</title>
	<atom:link href="http://www.davidpoll.com/2009/09/14/update-2-displaying-background-activity-in-a-silverlight-ria-application/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.davidpoll.com/2009/09/14/update-2-displaying-background-activity-in-a-silverlight-ria-application/</link>
	<description>Silverlight, RIA development, and other goofy geeky goodness.</description>
	<lastBuildDate>Fri, 05 Mar 2010 18:09:31 -0800</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Tim</title>
		<link>http://www.davidpoll.com/2009/09/14/update-2-displaying-background-activity-in-a-silverlight-ria-application/comment-page-1/#comment-5937</link>
		<dc:creator>Tim</dc:creator>
		<pubDate>Thu, 25 Feb 2010 17:36:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.davidpoll.com/2009/09/14/update-2-displaying-background-activity-in-a-silverlight-ria-application/#comment-5937</guid>
		<description>Excellent control David!  It has proved invaluable.

One thing that I noticed that the control supports IDisposable to get rid of the timers.  I use this control on several of my grids contained in forms that open and close multiple times.  If I do not call Dispose, my forms (and grids) all stay on the garbage collector.  

A big improvement would be to come up with a way to use something other than the Timer or have it self clean up. 

It is so darn close to being clean where I just paste it into the XAML and I get a nice loading indicator.  But if I forget to call Dispose(), I get memory leaks.</description>
		<content:encoded><![CDATA[<p>Excellent control David!  It has proved invaluable.</p>
<p>One thing that I noticed that the control supports IDisposable to get rid of the timers.  I use this control on several of my grids contained in forms that open and close multiple times.  If I do not call Dispose, my forms (and grids) all stay on the garbage collector.  </p>
<p>A big improvement would be to come up with a way to use something other than the Timer or have it self clean up. </p>
<p>It is so darn close to being clean where I just paste it into the XAML and I get a nice loading indicator.  But if I forget to call Dispose(), I get memory leaks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Aquilax</title>
		<link>http://www.davidpoll.com/2009/09/14/update-2-displaying-background-activity-in-a-silverlight-ria-application/comment-page-1/#comment-5289</link>
		<dc:creator>Aquilax</dc:creator>
		<pubDate>Thu, 17 Dec 2009 09:16:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.davidpoll.com/2009/09/14/update-2-displaying-background-activity-in-a-silverlight-ria-application/#comment-5289</guid>
		<description>Hi, would it possible to add a bindable (progress) value for the progress bar? That means something like a double value from 0 to 1.

by Aquilax</description>
		<content:encoded><![CDATA[<p>Hi, would it possible to add a bindable (progress) value for the progress bar? That means something like a double value from 0 to 1.</p>
<p>by Aquilax</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: david.poll</title>
		<link>http://www.davidpoll.com/2009/09/14/update-2-displaying-background-activity-in-a-silverlight-ria-application/comment-page-1/#comment-4955</link>
		<dc:creator>david.poll</dc:creator>
		<pubDate>Wed, 18 Nov 2009 03:24:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.davidpoll.com/2009/09/14/update-2-displaying-background-activity-in-a-silverlight-ria-application/#comment-4955</guid>
		<description>Thanks for the kind words, Mitch!  I&#039;m pretty sure your issues are related to using the RIA Services project template, which has a really old build of the control in it.  If you download my latest bits, you should be good to go without the layout issues.</description>
		<content:encoded><![CDATA[<p>Thanks for the kind words, Mitch!  I&#8217;m pretty sure your issues are related to using the RIA Services project template, which has a really old build of the control in it.  If you download my latest bits, you should be good to go without the layout issues.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: david.poll</title>
		<link>http://www.davidpoll.com/2009/09/14/update-2-displaying-background-activity-in-a-silverlight-ria-application/comment-page-1/#comment-4954</link>
		<dc:creator>david.poll</dc:creator>
		<pubDate>Wed, 18 Nov 2009 03:22:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.davidpoll.com/2009/09/14/update-2-displaying-background-activity-in-a-silverlight-ria-application/#comment-4954</guid>
		<description>I can understand the desire to avoid wrapping, although there are certain limitations and compromises when you use the attributing method.

Personally, I get anxious using the &quot;attributing&quot; method, since for something like this it can actually force you to inject things into the visual tree, which could break bindings or otherwise change the logical structure of your application unexpectedly (potentially breaking bindings, etc.).

Anyway, I think it&#039;s more a matter of preference than anything else.  I like the composability of the wrapping method.  I often have multiple activity controls wrapping my UI -- one with &quot;Loading...&quot;, one with &quot;Submitting...&quot;, one with &quot;Working...&quot;, etc., all bound to different properties.</description>
		<content:encoded><![CDATA[<p>I can understand the desire to avoid wrapping, although there are certain limitations and compromises when you use the attributing method.</p>
<p>Personally, I get anxious using the &#8220;attributing&#8221; method, since for something like this it can actually force you to inject things into the visual tree, which could break bindings or otherwise change the logical structure of your application unexpectedly (potentially breaking bindings, etc.).</p>
<p>Anyway, I think it&#8217;s more a matter of preference than anything else.  I like the composability of the wrapping method.  I often have multiple activity controls wrapping my UI &#8212; one with &#8220;Loading&#8230;&#8221;, one with &#8220;Submitting&#8230;&#8221;, one with &#8220;Working&#8230;&#8221;, etc., all bound to different properties.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: david.poll</title>
		<link>http://www.davidpoll.com/2009/09/14/update-2-displaying-background-activity-in-a-silverlight-ria-application/comment-page-1/#comment-4953</link>
		<dc:creator>david.poll</dc:creator>
		<pubDate>Wed, 18 Nov 2009 03:14:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.davidpoll.com/2009/09/14/update-2-displaying-background-activity-in-a-silverlight-ria-application/#comment-4953</guid>
		<description>Yeah, sorry for the confusion due to the RIA Services project template.  The next release will hopefully fix this issue (I discussed it with them).</description>
		<content:encoded><![CDATA[<p>Yeah, sorry for the confusion due to the RIA Services project template.  The next release will hopefully fix this issue (I discussed it with them).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sat</title>
		<link>http://www.davidpoll.com/2009/09/14/update-2-displaying-background-activity-in-a-silverlight-ria-application/comment-page-1/#comment-4952</link>
		<dc:creator>sat</dc:creator>
		<pubDate>Tue, 17 Nov 2009 15:30:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.davidpoll.com/2009/09/14/update-2-displaying-background-activity-in-a-silverlight-ria-application/#comment-4952</guid>
		<description>Great article , i was searching for the same idea using the keywork silverlight - loading please wait screen. At last found the article good explanation. Had some issues with the RIA template activity dll changed to your dll and everything worked as described. Thanks</description>
		<content:encoded><![CDATA[<p>Great article , i was searching for the same idea using the keywork silverlight &#8211; loading please wait screen. At last found the article good explanation. Had some issues with the RIA template activity dll changed to your dll and everything worked as described. Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Silverlight &#8211; &#8220;Loading Please wait&#8221; &#171; Dotnetinfo&#8217;s Weblog</title>
		<link>http://www.davidpoll.com/2009/09/14/update-2-displaying-background-activity-in-a-silverlight-ria-application/comment-page-1/#comment-4951</link>
		<dc:creator>Silverlight &#8211; &#8220;Loading Please wait&#8221; &#171; Dotnetinfo&#8217;s Weblog</dc:creator>
		<pubDate>Tue, 17 Nov 2009 15:27:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.davidpoll.com/2009/09/14/update-2-displaying-background-activity-in-a-silverlight-ria-application/#comment-4951</guid>
		<description>[...]  [...]</description>
		<content:encoded><![CDATA[<p>[...]  [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mitch</title>
		<link>http://www.davidpoll.com/2009/09/14/update-2-displaying-background-activity-in-a-silverlight-ria-application/comment-page-1/#comment-4949</link>
		<dc:creator>Mitch</dc:creator>
		<pubDate>Tue, 10 Nov 2009 20:54:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.davidpoll.com/2009/09/14/update-2-displaying-background-activity-in-a-silverlight-ria-application/#comment-4949</guid>
		<description>Hi David,   

Let me first second what everyone is saying... great control, great idea!  However, I&#039;m having an issue in some cases getting the content to display right.  I&#039;m trying to wrap the content of my page within an activity control but the content is no longer stretching horizontally and veritically.   

I have a hunch it has less to do with your control and more to do with the other elements on the page, and maybe style conflicts, but I&#039;m not sure where to start.  Any attempts I&#039;ve made to set the size of the activity control and the size of child elements has failed.  Any suggestions would be appreciated.</description>
		<content:encoded><![CDATA[<p>Hi David,   </p>
<p>Let me first second what everyone is saying&#8230; great control, great idea!  However, I&#8217;m having an issue in some cases getting the content to display right.  I&#8217;m trying to wrap the content of my page within an activity control but the content is no longer stretching horizontally and veritically.   </p>
<p>I have a hunch it has less to do with your control and more to do with the other elements on the page, and maybe style conflicts, but I&#8217;m not sure where to start.  Any attempts I&#8217;ve made to set the size of the activity control and the size of child elements has failed.  Any suggestions would be appreciated.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mark Cooper</title>
		<link>http://www.davidpoll.com/2009/09/14/update-2-displaying-background-activity-in-a-silverlight-ria-application/comment-page-1/#comment-4945</link>
		<dc:creator>Mark Cooper</dc:creator>
		<pubDate>Tue, 03 Nov 2009 11:28:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.davidpoll.com/2009/09/14/update-2-displaying-background-activity-in-a-silverlight-ria-application/#comment-4945</guid>
		<description>Setting AutoBind=False also gets over an issue with nested controls in a &quot;parent view&quot; using ActivityControl. The parent view &quot;isActive&quot; was being overridden by any child controls that also used ActivityControls. 

Great control, not sure I prefer &quot;wrapping&quot; as opposed to &quot;attributing&quot; though (attached prop).

Thanks,
Mark</description>
		<content:encoded><![CDATA[<p>Setting AutoBind=False also gets over an issue with nested controls in a &#8220;parent view&#8221; using ActivityControl. The parent view &#8220;isActive&#8221; was being overridden by any child controls that also used ActivityControls. </p>
<p>Great control, not sure I prefer &#8220;wrapping&#8221; as opposed to &#8220;attributing&#8221; though (attached prop).</p>
<p>Thanks,<br />
Mark</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: david.poll</title>
		<link>http://www.davidpoll.com/2009/09/14/update-2-displaying-background-activity-in-a-silverlight-ria-application/comment-page-1/#comment-4912</link>
		<dc:creator>david.poll</dc:creator>
		<pubDate>Tue, 20 Oct 2009 21:46:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.davidpoll.com/2009/09/14/update-2-displaying-background-activity-in-a-silverlight-ria-application/#comment-4912</guid>
		<description>Glad you managed to work it out!  Let me know if you run into anything else.</description>
		<content:encoded><![CDATA[<p>Glad you managed to work it out!  Let me know if you run into anything else.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
