<?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 a geek trapped in a cool guy's body</title>
	<atom:link href="http://www.ageektrapped.com/blog/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ageektrapped.com/blog</link>
	<description>Trapped online since 2004</description>
	<pubDate>Sat, 06 Sep 2008 03:50:28 +0000</pubDate>
	<generator>http://wordpress.org/</generator>
		<item>
		<title>Comment on The Missing .NET #7: Displaying Enums in WPF by Dew Drop - September 3, 2008 &#124; Alvin Ashcraft's Morning Dew</title>
		<link>http://www.ageektrapped.com/blog/the-missing-net-7-displaying-enums-in-wpf/#comment-492</link>
		<dc:creator>Dew Drop - September 3, 2008 &#124; Alvin Ashcraft's Morning Dew</dc:creator>
		<pubDate>Wed, 03 Sep 2008 13:08:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.ageektrapped.com/blog/the-missing-net-7-displaying-enums-in-wpf/#comment-492</guid>
		<description>[...] The Missing .NET #7: Displaying Enums in WPF (Jason Kemp) [...]</description>
		<content:encoded><![CDATA[<p>[...] The Missing .NET #7: Displaying Enums in WPF (Jason Kemp) [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Subtext to WordPress: Converting blog engines by Shiva</title>
		<link>http://www.ageektrapped.com/blog/subtext-to-wordpress-converting-blog-engines/#comment-486</link>
		<dc:creator>Shiva</dc:creator>
		<pubDate>Fri, 29 Aug 2008 15:51:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.jasonkemp.ca/blog/subtext-to-wordpress-converting-blog-engines/#comment-486</guid>
		<description>Jason,

You are being "too kind" to SubText. I am currently on Subtext too and migrating to WordPress because of several reasons, some of which you have already stated. 

SubText was a very poor port from Scott Water's .Text. The source code also seems poorly managed and the main "evangelist" and owner for Subtext, Phil, seems to have moved on to Microsoft and the Project is facing neglect.

I have evaluated WordPress quite extensively before making the switch. One of the best things about Wordpress is that since it has such a large user base,  the platform is tested and the code base is quite stable. Also, running on Apache makes the pages render in factions of seconds on shared hosting, compared to SubText or other .Net engines that have a longer cold startup time.

Could you please give me more details on your URL rewriting / redirects ? Did you do a 301 redirect for all requests in old blog and then handle the actual forwarding in new WordPress blog ?</description>
		<content:encoded><![CDATA[<p>Jason,</p>
<p>You are being &#8220;too kind&#8221; to SubText. I am currently on Subtext too and migrating to WordPress because of several reasons, some of which you have already stated. </p>
<p>SubText was a very poor port from Scott Water&#8217;s .Text. The source code also seems poorly managed and the main &#8220;evangelist&#8221; and owner for Subtext, Phil, seems to have moved on to Microsoft and the Project is facing neglect.</p>
<p>I have evaluated WordPress quite extensively before making the switch. One of the best things about Wordpress is that since it has such a large user base,  the platform is tested and the code base is quite stable. Also, running on Apache makes the pages render in factions of seconds on shared hosting, compared to SubText or other .Net engines that have a longer cold startup time.</p>
<p>Could you please give me more details on your URL rewriting / redirects ? Did you do a 301 redirect for all requests in old blog and then handle the actual forwarding in new WordPress blog ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on The Missing .NET #4: Cue Banner in WPF (I mean, Watermark in WPF) by Brian</title>
		<link>http://www.ageektrapped.com/blog/the-missing-net-4-cue-banner-in-wpf-i-mean-watermark-in-wpf/#comment-485</link>
		<dc:creator>Brian</dc:creator>
		<pubDate>Tue, 19 Aug 2008 15:11:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.ageektrapped.com/blog/the-missing-net-4-cue-banner-in-wpf-i-mean-watermark-in-wpf/#comment-485</guid>
		<description>Great code, I didn't even think about adding a cue like that.  I did find a small problem though, if the cue's are displayed and the visiblity of the control changes, the cues can be left.  To fix this I hooked up to the IsVisible property to the control so it would remove the cue if it was visible.  Not sure if I fixed in the best manner, but it seems to work.

private static void CueBannerPropertyChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
        {
            Control control = (Control) d;
            control.Loaded += control_Loaded;
            DependencyPropertyDescriptor isVisiblePropertyDescriptor = DependencyPropertyDescriptor.FromProperty(Control.IsVisibleProperty, d.GetType());
            isVisiblePropertyDescriptor.AddValueChanged(d, control_IsVisibleChanged);

....

private static void control_IsVisibleChanged(object sender, EventArgs e)
        {
            Control control = (Control) sender;
            if( !ShouldShowCueBanner(control) &#124;&#124; !control.IsVisible )
                RemoveCueBanner(control);
        }</description>
		<content:encoded><![CDATA[<p>Great code, I didn&#8217;t even think about adding a cue like that.  I did find a small problem though, if the cue&#8217;s are displayed and the visiblity of the control changes, the cues can be left.  To fix this I hooked up to the IsVisible property to the control so it would remove the cue if it was visible.  Not sure if I fixed in the best manner, but it seems to work.</p>
<p>private static void CueBannerPropertyChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)<br />
        {<br />
            Control control = (Control) d;<br />
            control.Loaded += control_Loaded;<br />
            DependencyPropertyDescriptor isVisiblePropertyDescriptor = DependencyPropertyDescriptor.FromProperty(Control.IsVisibleProperty, d.GetType());<br />
            isVisiblePropertyDescriptor.AddValueChanged(d, control_IsVisibleChanged);</p>
<p>&#8230;.</p>
<p>private static void control_IsVisibleChanged(object sender, EventArgs e)<br />
        {<br />
            Control control = (Control) sender;<br />
            if( !ShouldShowCueBanner(control) || !control.IsVisible )<br />
                RemoveCueBanner(control);<br />
        }</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Redoing the Options Dialog in BabySmash by John Rennemeyer</title>
		<link>http://www.ageektrapped.com/blog/redoing-the-options-dialog-in-babysmash/#comment-480</link>
		<dc:creator>John Rennemeyer</dc:creator>
		<pubDate>Wed, 13 Aug 2008 20:10:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.ageektrapped.com/blog/redoing-the-options-dialog-in-babysmash/#comment-480</guid>
		<description>For the property not getting changed until you lose focus, you should be able to add the following:

UpdateSourceTrigger=PropertyChanged

so you should have:

 

I haven't tested this in your sample, but I am using this method when I'm binding a TextBox to a CLR object property and it works great.

I hope this helps.

John
MuvEnum</description>
		<content:encoded><![CDATA[<p>For the property not getting changed until you lose focus, you should be able to add the following:</p>
<p>UpdateSourceTrigger=PropertyChanged</p>
<p>so you should have:</p>
<p>I haven&#8217;t tested this in your sample, but I am using this method when I&#8217;m binding a TextBox to a CLR object property and it works great.</p>
<p>I hope this helps.</p>
<p>John<br />
MuvEnum</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Subtext to WordPress: Converting blog engines by John</title>
		<link>http://www.ageektrapped.com/blog/subtext-to-wordpress-converting-blog-engines/#comment-474</link>
		<dc:creator>John</dc:creator>
		<pubDate>Fri, 08 Aug 2008 17:22:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.jasonkemp.ca/blog/subtext-to-wordpress-converting-blog-engines/#comment-474</guid>
		<description>Sorry for not getting back sooner. Now we have a commitment to make this move, so I need to finally take this on. the version of subtext is 1.94. It could be 1.95?  The blogML export does not work either. The database has hundreds (maybe thousands) of records.

Your post is very helpful, but the part you left out about the dirty details of how you were able to get the data out of the database and set up the table parameters for import is key to this. Any info would be very helpful.</description>
		<content:encoded><![CDATA[<p>Sorry for not getting back sooner. Now we have a commitment to make this move, so I need to finally take this on. the version of subtext is 1.94. It could be 1.95?  The blogML export does not work either. The database has hundreds (maybe thousands) of records.</p>
<p>Your post is very helpful, but the part you left out about the dirty details of how you were able to get the data out of the database and set up the table parameters for import is key to this. Any info would be very helpful.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on The WPF Application Class: Overview and Gotcha by Dew Drop - August 2, 2008 &#124; Alvin Ashcraft's Morning Dew</title>
		<link>http://www.ageektrapped.com/blog/the-wpf-application-class-overview-and-gotcha/#comment-469</link>
		<dc:creator>Dew Drop - August 2, 2008 &#124; Alvin Ashcraft's Morning Dew</dc:creator>
		<pubDate>Sat, 02 Aug 2008 13:47:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.ageektrapped.com/blog/the-wpf-application-class-overview-and-gotcha/#comment-469</guid>
		<description>[...] The WPF Application Class: Overview and Gotcha (Jason Kemp) [...]</description>
		<content:encoded><![CDATA[<p>[...] The WPF Application Class: Overview and Gotcha (Jason Kemp) [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Redoing the Options Dialog in BabySmash by Scott Hanselman's Computer Zen - Learning WPF with BabySmash - Customer Feedback and a WPF Font ComboBox</title>
		<link>http://www.ageektrapped.com/blog/redoing-the-options-dialog-in-babysmash/#comment-465</link>
		<dc:creator>Scott Hanselman's Computer Zen - Learning WPF with BabySmash - Customer Feedback and a WPF Font ComboBox</dc:creator>
		<pubDate>Fri, 18 Jul 2008 06:13:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.ageektrapped.com/blog/redoing-the-options-dialog-in-babysmash/#comment-465</guid>
		<description>[...] Settings for this project. Remember that I refactored the Options Dialog a few weeks back using Jason Kemp's code. This made it easy to just add one additional ComboBox. I'm getting good enough that I added the [...]</description>
		<content:encoded><![CDATA[<p>[...] Settings for this project. Remember that I refactored the Options Dialog a few weeks back using Jason Kemp&#8217;s code. This made it easy to just add one additional ComboBox. I&#8217;m getting good enough that I added the [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Redoing the Options Dialog in BabySmash by Jason Kemp</title>
		<link>http://www.ageektrapped.com/blog/redoing-the-options-dialog-in-babysmash/#comment-457</link>
		<dc:creator>Jason Kemp</dc:creator>
		<pubDate>Wed, 16 Jul 2008 01:14:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.ageektrapped.com/blog/redoing-the-options-dialog-in-babysmash/#comment-457</guid>
		<description>@Joe: Yes, you're right. That is something I neglected to mention.</description>
		<content:encoded><![CDATA[<p>@Joe: Yes, you&#8217;re right. That is something I neglected to mention.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Redoing the Options Dialog in BabySmash by Joe</title>
		<link>http://www.ageektrapped.com/blog/redoing-the-options-dialog-in-babysmash/#comment-455</link>
		<dc:creator>Joe</dc:creator>
		<pubDate>Tue, 15 Jul 2008 23:45:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.ageektrapped.com/blog/redoing-the-options-dialog-in-babysmash/#comment-455</guid>
		<description>Thanks for the great explanation but what happens when a user modifies one of these databound entries and then selects the Cancel button in the dialog?

Wouldn't the programmer also need to do a Properties.Settings.Default.Reload(); in the OnCancel handler?</description>
		<content:encoded><![CDATA[<p>Thanks for the great explanation but what happens when a user modifies one of these databound entries and then selects the Cancel button in the dialog?</p>
<p>Wouldn&#8217;t the programmer also need to do a Properties.Settings.Default.Reload(); in the OnCancel handler?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Subtext to WordPress: Converting blog engines by Jason Kemp</title>
		<link>http://www.ageektrapped.com/blog/subtext-to-wordpress-converting-blog-engines/#comment-448</link>
		<dc:creator>Jason Kemp</dc:creator>
		<pubDate>Tue, 15 Jul 2008 01:14:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.jasonkemp.ca/blog/subtext-to-wordpress-converting-blog-engines/#comment-448</guid>
		<description>@John: You're the second person to ask within a week. That's enough inquiry around these parts to warrant a post. :) I'll follow up with one shortly.

Incidentally, what version of Subtext are you using?</description>
		<content:encoded><![CDATA[<p>@John: You&#8217;re the second person to ask within a week. That&#8217;s enough inquiry around these parts to warrant a post. <img src='http://www.ageektrapped.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> I&#8217;ll follow up with one shortly.</p>
<p>Incidentally, what version of Subtext are you using?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
