<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.claritycon.com/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Dev Logging - All Comments</title><link>http://blogs.claritycon.com/blogs/sean_devlin/default.aspx</link><description>printf(&amp;quot;does this work\n&amp;quot;);</description><dc:language>en</dc:language><generator>CommunityServer 2007.1 (Build: 20917.1142)</generator><item><title>re: AJAX Logging with Exponential Backoff</title><link>http://blogs.claritycon.com/blogs/sean_devlin/archive/2009/07/13/ajax-logging-with-exponential-backoff.aspx#91655</link><pubDate>Mon, 05 Oct 2009 19:24:15 GMT</pubDate><guid isPermaLink="false">da947a97-509e-40e6-bbb5-1443ad47bf4e:91655</guid><dc:creator>Etalisien</dc:creator><description>&lt;p&gt;Perfect work!, &lt;/p&gt;
&lt;img src="http://blogs.claritycon.com/aggbug.aspx?PostID=91655" width="1" height="1"&gt;</description></item><item><title>re: AJAX Logging with Exponential Backoff</title><link>http://blogs.claritycon.com/blogs/sean_devlin/archive/2009/07/13/ajax-logging-with-exponential-backoff.aspx#91654</link><pubDate>Mon, 05 Oct 2009 19:10:03 GMT</pubDate><guid isPermaLink="false">da947a97-509e-40e6-bbb5-1443ad47bf4e:91654</guid><dc:creator>Laulith</dc:creator><description>&lt;p&gt;Perfect work!, &lt;/p&gt;
&lt;img src="http://blogs.claritycon.com/aggbug.aspx?PostID=91654" width="1" height="1"&gt;</description></item><item><title>re: AJAX Logging with Exponential Backoff</title><link>http://blogs.claritycon.com/blogs/sean_devlin/archive/2009/07/13/ajax-logging-with-exponential-backoff.aspx#91652</link><pubDate>Mon, 05 Oct 2009 18:55:24 GMT</pubDate><guid isPermaLink="false">da947a97-509e-40e6-bbb5-1443ad47bf4e:91652</guid><dc:creator>Adwardolind</dc:creator><description>&lt;p&gt;Excellent site. It was pleasant to me., &lt;/p&gt;
&lt;img src="http://blogs.claritycon.com/aggbug.aspx?PostID=91652" width="1" height="1"&gt;</description></item><item><title>re: AJAX Logging with Exponential Backoff</title><link>http://blogs.claritycon.com/blogs/sean_devlin/archive/2009/07/13/ajax-logging-with-exponential-backoff.aspx#91648</link><pubDate>Mon, 05 Oct 2009 18:39:59 GMT</pubDate><guid isPermaLink="false">da947a97-509e-40e6-bbb5-1443ad47bf4e:91648</guid><dc:creator>Proimeth</dc:creator><description>&lt;p&gt;I bookmarked this link. Thank you for good job!, &lt;/p&gt;
&lt;img src="http://blogs.claritycon.com/aggbug.aspx?PostID=91648" width="1" height="1"&gt;</description></item><item><title>re: AJAX Logging with Exponential Backoff</title><link>http://blogs.claritycon.com/blogs/sean_devlin/archive/2009/07/13/ajax-logging-with-exponential-backoff.aspx#91642</link><pubDate>Mon, 05 Oct 2009 18:22:53 GMT</pubDate><guid isPermaLink="false">da947a97-509e-40e6-bbb5-1443ad47bf4e:91642</guid><dc:creator>Edaetram</dc:creator><description>&lt;p&gt;It is the coolest site, keep so!, &lt;/p&gt;
&lt;img src="http://blogs.claritycon.com/aggbug.aspx?PostID=91642" width="1" height="1"&gt;</description></item><item><title>re: Cascading Implicit Styles in WPF</title><link>http://blogs.claritycon.com/blogs/sean_devlin/archive/2009/07/27/cascading-implicit-styles-in-wpf.aspx#89569</link><pubDate>Thu, 24 Sep 2009 17:51:03 GMT</pubDate><guid isPermaLink="false">da947a97-509e-40e6-bbb5-1443ad47bf4e:89569</guid><dc:creator>sdevlin</dc:creator><description>&lt;p&gt;Thanks for the comment, David.&lt;/p&gt;
&lt;p&gt;As to your question, I don't have a lot of experience with merged resource dictionaries, but my gut tells me it would blow up when you try to add another style with the same key. For example, the following code blows up:&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;&amp;lt;Application.Resources&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;Style x:Key=&amp;quot;{x:Type TextBlock}&amp;quot; TargetType=&amp;quot;{x:Type TextBlock}&amp;quot;&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;Setter Property=&amp;quot;Foreground&amp;quot; Value=&amp;quot;Red&amp;quot; /&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/Style&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;Style TargetType=&amp;quot;{x:Type TextBlock}&amp;quot; BasedOn=&amp;quot;{StaticResource {x:Type TextBlock}}&amp;quot; &amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;Setter Property=&amp;quot;Foreground&amp;quot; Value=&amp;quot;Blue&amp;quot; /&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/Style&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;&amp;lt;/Application.Resources&amp;gt;&lt;/p&gt;
&lt;p&gt;With the following exception message:&lt;/p&gt;
&lt;p&gt;Item has already been added. Key in dictionary: 'System.Windows.Controls.TextBlock' &amp;nbsp;Key being added: 'System.Windows.Controls.TextBlock'&lt;/p&gt;
&lt;p&gt;If merged dictionaries simulate the above, then I think it won't work. My best advice would be to give it a shot and see what happens. If it doesn't work, maybe you can find some way to fit your style in somewhere else in the hierarchy?&lt;/p&gt;
&lt;p&gt;Hope this helps.&lt;/p&gt;
&lt;img src="http://blogs.claritycon.com/aggbug.aspx?PostID=89569" width="1" height="1"&gt;</description></item><item><title>re: Cascading Implicit Styles in WPF</title><link>http://blogs.claritycon.com/blogs/sean_devlin/archive/2009/07/27/cascading-implicit-styles-in-wpf.aspx#89532</link><pubDate>Thu, 24 Sep 2009 15:59:48 GMT</pubDate><guid isPermaLink="false">da947a97-509e-40e6-bbb5-1443ad47bf4e:89532</guid><dc:creator>David Dikman</dc:creator><description>&lt;p&gt;Splendid! Absolutely splendid!&lt;/p&gt;
&lt;p&gt;I&amp;#180;ve been searching for this solution a long time now. Knew it must've been possible to build styles on top of implicit styles.&lt;/p&gt;
&lt;p&gt;Say you wouldn't happen to know if this is possible with implicit styles from theme packages linked in using merged resource directories?&lt;/p&gt;
&lt;p&gt;Say I link in the Aero theme using a merged directory and then which to add an implicit margin to all buttons, could i do something like&lt;/p&gt;
&lt;p&gt;&amp;lt;Style TargetType=&amp;quot;{x:Type Button}&amp;quot; BasedOn=&amp;quot;{StaticResource {x:Type Button}}&amp;quot;&amp;gt;&lt;/p&gt;
&lt;p&gt;...&lt;/p&gt;
&lt;p&gt;&amp;lt;/Style&amp;gt;&lt;/p&gt;
&lt;p&gt;And place this below the merged resource, or would this mess something up since there are two implicit styles on the 'same' level in the hierarchy?&lt;/p&gt;
&lt;p&gt;Best Regards&lt;/p&gt;
&lt;img src="http://blogs.claritycon.com/aggbug.aspx?PostID=89532" width="1" height="1"&gt;</description></item><item><title>Implizite Styles in WPF &amp;laquo; Murratore&amp;#8217;s Weblog</title><link>http://blogs.claritycon.com/blogs/sean_devlin/archive/2009/07/27/cascading-implicit-styles-in-wpf.aspx#88611</link><pubDate>Wed, 26 Aug 2009 07:46:11 GMT</pubDate><guid isPermaLink="false">da947a97-509e-40e6-bbb5-1443ad47bf4e:88611</guid><dc:creator>Implizite Styles in WPF « Murratore’s Weblog</dc:creator><description>&lt;p&gt;Pingback from &amp;nbsp;Implizite Styles in WPF &amp;amp;laquo; Murratore&amp;amp;#8217;s Weblog&lt;/p&gt;
&lt;img src="http://blogs.claritycon.com/aggbug.aspx?PostID=88611" width="1" height="1"&gt;</description></item><item><title>Creating Objects with Observable Properties in JavaScript</title><link>http://blogs.claritycon.com/blogs/sean_devlin/archive/2009/07/13/ajax-logging-with-exponential-backoff.aspx#88590</link><pubDate>Fri, 21 Aug 2009 21:33:54 GMT</pubDate><guid isPermaLink="false">da947a97-509e-40e6-bbb5-1443ad47bf4e:88590</guid><dc:creator>Dev Logging</dc:creator><description>&lt;p&gt;Regular readers will notice that I’m quite taken with JavaScript recently . I’ve been looking at using&lt;/p&gt;
&lt;img src="http://blogs.claritycon.com/aggbug.aspx?PostID=88590" width="1" height="1"&gt;</description></item><item><title>Creating Objects with Observable Properties in JavaScript</title><link>http://blogs.claritycon.com/blogs/sean_devlin/archive/2009/06/25/custom-events-in-jquery.aspx#88589</link><pubDate>Fri, 21 Aug 2009 21:33:53 GMT</pubDate><guid isPermaLink="false">da947a97-509e-40e6-bbb5-1443ad47bf4e:88589</guid><dc:creator>Dev Logging</dc:creator><description>&lt;p&gt;Regular readers will notice that I’m quite taken with JavaScript recently . I’ve been looking at using&lt;/p&gt;
&lt;img src="http://blogs.claritycon.com/aggbug.aspx?PostID=88589" width="1" height="1"&gt;</description></item><item><title>Creating Objects with Observable Properties in JavaScript</title><link>http://blogs.claritycon.com/blogs/sean_devlin/archive/2009/06/23/a-lightweight-event-framework-in-javascript.aspx#88588</link><pubDate>Fri, 21 Aug 2009 21:33:52 GMT</pubDate><guid isPermaLink="false">da947a97-509e-40e6-bbb5-1443ad47bf4e:88588</guid><dc:creator>Dev Logging</dc:creator><description>&lt;p&gt;Regular readers will notice that I’m quite taken with JavaScript recently . I’ve been looking at using&lt;/p&gt;
&lt;img src="http://blogs.claritycon.com/aggbug.aspx?PostID=88588" width="1" height="1"&gt;</description></item><item><title>re: Referring to Enums (and Other Nested Types) in XAML</title><link>http://blogs.claritycon.com/blogs/sean_devlin/archive/2009/07/27/referring-to-enums-and-other-nested-types-in-xaml.aspx#88324</link><pubDate>Tue, 04 Aug 2009 13:01:13 GMT</pubDate><guid isPermaLink="false">da947a97-509e-40e6-bbb5-1443ad47bf4e:88324</guid><dc:creator>Ben Farmer</dc:creator><description>&lt;p&gt;That is the best example enum ever! &amp;nbsp;Now I have to dig out the NES.&lt;/p&gt;
&lt;img src="http://blogs.claritycon.com/aggbug.aspx?PostID=88324" width="1" height="1"&gt;</description></item><item><title>re: Parameter Passing: By Value vs. By Reference</title><link>http://blogs.claritycon.com/blogs/sean_devlin/archive/2009/06/16/parameter-passing-by-value-vs-by-reference.aspx#88279</link><pubDate>Fri, 31 Jul 2009 19:11:33 GMT</pubDate><guid isPermaLink="false">da947a97-509e-40e6-bbb5-1443ad47bf4e:88279</guid><dc:creator>sdevlin</dc:creator><description>&lt;p&gt;No problem, Mark. Glad you found it helpful.&lt;/p&gt;
&lt;img src="http://blogs.claritycon.com/aggbug.aspx?PostID=88279" width="1" height="1"&gt;</description></item><item><title>re: Parameter Passing: By Value vs. By Reference</title><link>http://blogs.claritycon.com/blogs/sean_devlin/archive/2009/06/16/parameter-passing-by-value-vs-by-reference.aspx#88270</link><pubDate>Fri, 31 Jul 2009 16:12:12 GMT</pubDate><guid isPermaLink="false">da947a97-509e-40e6-bbb5-1443ad47bf4e:88270</guid><dc:creator>Mark</dc:creator><description>&lt;p&gt;Hi I'd just like to say that this article was immensely helpful! &amp;nbsp;&lt;/p&gt;
&lt;p&gt;I've been trying to understand why in C++ the ref-to-ptr (fn(int*&amp;amp;a)) sequence even exists and now I know :) &amp;nbsp;I always thought that passing a pointer was the same as passing a reference, but now I know that it's actually a local copy of the pointer. &amp;nbsp;Kinda a confusing concept to grasp and this was the best description I've found about it yet. &amp;nbsp;&lt;/p&gt;
&lt;p&gt;Thanks!&lt;/p&gt;
&lt;img src="http://blogs.claritycon.com/aggbug.aspx?PostID=88270" width="1" height="1"&gt;</description></item><item><title>Links (7/30/2009) &amp;laquo; Steve Pietrek &amp;#8211; Everything SharePoint</title><link>http://blogs.claritycon.com/blogs/sean_devlin/archive/2009/07/27/referring-to-enums-and-other-nested-types-in-xaml.aspx#88223</link><pubDate>Fri, 31 Jul 2009 01:31:18 GMT</pubDate><guid isPermaLink="false">da947a97-509e-40e6-bbb5-1443ad47bf4e:88223</guid><dc:creator>Links (7/30/2009) « Steve Pietrek – Everything SharePoint</dc:creator><description>&lt;p&gt;Pingback from &amp;nbsp;Links (7/30/2009) &amp;amp;laquo; Steve Pietrek &amp;amp;#8211; Everything SharePoint&lt;/p&gt;
&lt;img src="http://blogs.claritycon.com/aggbug.aspx?PostID=88223" width="1" height="1"&gt;</description></item></channel></rss>