<?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>Software development and other goofy geeky goodness.</description>
	<lastBuildDate>Tue, 23 Aug 2011 19:01:58 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Introducción a Silverlight Parte 3: Acceso a Datos &#124; Maromas Digitales</title>
		<link>http://www.davidpoll.com/2009/09/14/update-2-displaying-background-activity-in-a-silverlight-ria-application/comment-page-1/#comment-7323</link>
		<dc:creator>Introducción a Silverlight Parte 3: Acceso a Datos &#124; Maromas Digitales</dc:creator>
		<pubDate>Wed, 15 Dec 2010 18:34:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.davidpoll.com/2009/09/14/update-2-displaying-background-activity-in-a-silverlight-ria-application/#comment-7323</guid>
		<description>[...] parte de las plantillas provistas por los Servicios WCF RIA, pero también se puede descargar del blog de David Poll. Van a tener que generar el control y luego agregar una referencia al proyecto (si bajan uno de los [...]</description>
		<content:encoded><![CDATA[<p>[...] parte de las plantillas provistas por los Servicios WCF RIA, pero también se puede descargar del blog de David Poll. Van a tener que generar el control y luego agregar una referencia al proyecto (si bajan uno de los [...]</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-7026</link>
		<dc:creator>david.poll</dc:creator>
		<pubDate>Thu, 29 Jul 2010 20:47:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.davidpoll.com/2009/09/14/update-2-displaying-background-activity-in-a-silverlight-ria-application/#comment-7026</guid>
		<description>Abisek,

The way to do this is quite straightforward.  Rather than wrapping the content within the ScrollViewer with the BusyIndicator, wrap the ScrollViewer itself in the BusyIndicator.  This way, the BusyIndicator&#039;s layout will not be affected by the scroll within the ScrollViewer.

-David</description>
		<content:encoded><![CDATA[<p>Abisek,</p>
<p>The way to do this is quite straightforward.  Rather than wrapping the content within the ScrollViewer with the BusyIndicator, wrap the ScrollViewer itself in the BusyIndicator.  This way, the BusyIndicator&#8217;s layout will not be affected by the scroll within the ScrollViewer.</p>
<p>-David</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Abisek</title>
		<link>http://www.davidpoll.com/2009/09/14/update-2-displaying-background-activity-in-a-silverlight-ria-application/comment-page-1/#comment-7024</link>
		<dc:creator>Abisek</dc:creator>
		<pubDate>Thu, 29 Jul 2010 09:29:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.davidpoll.com/2009/09/14/update-2-displaying-background-activity-in-a-silverlight-ria-application/#comment-7024</guid>
		<description>One huddle im facing with this control in my Application. My silverlight page has a vertical scroll bar. when the activity control is active its by default aligned center by page and not by screeen both horizontally and vertically. So now I have to scroll down to find the &quot;Loading...&quot; symbol.

Kindly guide me how i can position it with respect to my screen so that whenever iis enabled it appears on the screen to see?</description>
		<content:encoded><![CDATA[<p>One huddle im facing with this control in my Application. My silverlight page has a vertical scroll bar. when the activity control is active its by default aligned center by page and not by screeen both horizontally and vertically. So now I have to scroll down to find the &#8220;Loading&#8230;&#8221; symbol.</p>
<p>Kindly guide me how i can position it with respect to my screen so that whenever iis enabled it appears on the screen to see?</p>
]]></content:encoded>
	</item>
	<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>
</channel>
</rss>

