<?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 for hardcodet.net</title>
	<atom:link href="http://www.hardcodet.net/comments/feed" rel="self" type="application/rss+xml" />
	<link>http://www.hardcodet.net</link>
	<description>Confessions of a Code Addict</description>
	<pubDate>Sat, 04 Jul 2009 23:27:26 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on WPF NotifyIcon by Philipp Sumi</title>
		<link>http://www.hardcodet.net/projects/wpf-notifyicon/comment-page-1#comment-574</link>
		<dc:creator>Philipp Sumi</dc:creator>
		<pubDate>Thu, 02 Jul 2009 08:06:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.hardcodet.net/?page_id=452#comment-574</guid>
		<description>Rodolfo,

Thanks for the contribution. This is fixed in 1.0.3 which also provides CommandTarget properties for both commands. 1.0.3 will be available within the next days.</description>
		<content:encoded><![CDATA[<p>Rodolfo,</p>
<p>Thanks for the contribution. This is fixed in 1.0.3 which also provides CommandTarget properties for both commands. 1.0.3 will be available within the next days.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Detecting Double Click Events on the WPF DataGrid by Philipp Sumi</title>
		<link>http://www.hardcodet.net/2009/03/detecting-double-click-events-on-the-wpf-datagrid/comment-page-1#comment-572</link>
		<dc:creator>Philipp Sumi</dc:creator>
		<pubDate>Wed, 01 Jul 2009 08:48:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.hardcodet.net/2009/03/detecting-double-click-events-on-the-wpf-datagrid#comment-572</guid>
		<description>AC,
Your solution also fires the event if you have a selected row and click on an empty area of the grid. Be careful with this one.

Furthermore, you don't get the row, but the bound item ;)</description>
		<content:encoded><![CDATA[<p>AC,<br />
Your solution also fires the event if you have a selected row and click on an empty area of the grid. Be careful with this one.</p>
<p>Furthermore, you don&#8217;t get the row, but the bound item <img src='http://www.hardcodet.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using Attached Properties to Create a WPF Image Button by BigOldSofty</title>
		<link>http://www.hardcodet.net/2009/01/create-wpf-image-button-through-attached-properties/comment-page-1#comment-569</link>
		<dc:creator>BigOldSofty</dc:creator>
		<pubDate>Tue, 30 Jun 2009 00:14:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.hardcodet.net/?p=223#comment-569</guid>
		<description>I have seen so many methods of doing Image buttons now I've lost count.  Unfortunately none of them address my problem.  The app I'm working on HAS to be dynamic in many respects and a lot of the XAML code is generated on-the-fly at runtime and streamed into a panel or grid etc.  What I have found in this case is that the stream reading fails either at the image or the namespace reference.  Is there a way around this?  I guess this is another instance of trying to use a technology for something it was not intended to do.</description>
		<content:encoded><![CDATA[<p>I have seen so many methods of doing Image buttons now I&#8217;ve lost count.  Unfortunately none of them address my problem.  The app I&#8217;m working on HAS to be dynamic in many respects and a lot of the XAML code is generated on-the-fly at runtime and streamed into a panel or grid etc.  What I have found in this case is that the stream reading fails either at the image or the namespace reference.  Is there a way around this?  I guess this is another instance of trying to use a technology for something it was not intended to do.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on WPF NotifyIcon by Rodolfo Grave</title>
		<link>http://www.hardcodet.net/projects/wpf-notifyicon/comment-page-1#comment-566</link>
		<dc:creator>Rodolfo Grave</dc:creator>
		<pubDate>Fri, 26 Jun 2009 15:04:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.hardcodet.net/?page_id=452#comment-566</guid>
		<description>Hi. Thanks a lot for this code. It's great.

I made a modification to make it work with RoutedCommands. Right now if you assign a RoutedCommand to LeftClickCommand or DoubleClickCommand, the command is not invoked. This is due to the way you are invoking commands in the 'ExecuteIfEnabled' extension method and arguably due to a bad implementation of the RoutedCommand 'CanExecute' method.

To make this scenario work, you must add the following method to the 'TaskbarIcon' class and replace the 5 calls to 'ExecuteIfEnabled' by a call to this new method:
&lt;code&gt;
    protected void ExecuteCommandIfEnabled(ICommand command, object commandParameter)
    {
        if (command != null)
        {
            RoutedCommand routedCommand = command as RoutedCommand;
            if (routedCommand == null)
            {
                command.ExecuteIfEnabled(command);
            }
            else
            {
                if (routedCommand.CanExecute(commandParameter, this))
                {
                    routedCommand.Execute(commandParameter, this);
                }
            }
        }
    }
&lt;/code&gt;

Thanks again.</description>
		<content:encoded><![CDATA[<p>Hi. Thanks a lot for this code. It&#8217;s great.</p>
<p>I made a modification to make it work with RoutedCommands. Right now if you assign a RoutedCommand to LeftClickCommand or DoubleClickCommand, the command is not invoked. This is due to the way you are invoking commands in the &#8216;ExecuteIfEnabled&#8217; extension method and arguably due to a bad implementation of the RoutedCommand &#8216;CanExecute&#8217; method.</p>
<p>To make this scenario work, you must add the following method to the &#8216;TaskbarIcon&#8217; class and replace the 5 calls to &#8216;ExecuteIfEnabled&#8217; by a call to this new method:<br />
<code><br />
    protected void ExecuteCommandIfEnabled(ICommand command, object commandParameter)<br />
    {<br />
        if (command != null)<br />
        {<br />
            RoutedCommand routedCommand = command as RoutedCommand;<br />
            if (routedCommand == null)<br />
            {<br />
                command.ExecuteIfEnabled(command);<br />
            }<br />
            else<br />
            {<br />
                if (routedCommand.CanExecute(commandParameter, this))<br />
                {<br />
                    routedCommand.Execute(commandParameter, this);<br />
                }<br />
            }<br />
        }<br />
    }<br />
</code></p>
<p>Thanks again.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Finding an ancestor of a WPF dependency object by hardcodet.net &#187; Finding Elements in the WPF Tree - Both Ways</title>
		<link>http://www.hardcodet.net/2008/02/find-wpf-parent/comment-page-1#comment-565</link>
		<dc:creator>hardcodet.net &#187; Finding Elements in the WPF Tree - Both Ways</dc:creator>
		<pubDate>Thu, 25 Jun 2009 12:54:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.hardcodet.net/2008/02/find-wpf-parent#comment-565</guid>
		<description>[...] A while ago I posted a helper method to traverse a (visual or logical) tree in order to find an element’s parent of a given type. The corresponding blog entry is here. [...]</description>
		<content:encoded><![CDATA[<p>[...] A while ago I posted a helper method to traverse a (visual or logical) tree in order to find an element’s parent of a given type. The corresponding blog entry is here. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on WPF NotifyIcon by Wpf/Xaml Menagerie &#171; Coder Tools &#38; Reviews</title>
		<link>http://www.hardcodet.net/projects/wpf-notifyicon/comment-page-1#comment-564</link>
		<dc:creator>Wpf/Xaml Menagerie &#171; Coder Tools &#38; Reviews</dc:creator>
		<pubDate>Wed, 24 Jun 2009 17:37:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.hardcodet.net/?page_id=452#comment-564</guid>
		<description>[...] WPF Notify Icon (very nice with tutorials and everything) [...]</description>
		<content:encoded><![CDATA[<p>[...] WPF Notify Icon (very nice with tutorials and everything) [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Moving WPF DataGrid Rows using Drag and Drop by Philipp Sumi</title>
		<link>http://www.hardcodet.net/2009/03/moving-data-grid-rows-using-drag-and-drop/comment-page-1#comment-553</link>
		<dc:creator>Philipp Sumi</dc:creator>
		<pubDate>Wed, 17 Jun 2009 19:47:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.hardcodet.net/?p=304#comment-553</guid>
		<description>Maxime,

Nope, this sample was built on and for Microsoft's grid only. However, I'm pretty sure you'll be able to get a snippet in their forum.

...I guess I should point that out in the article.</description>
		<content:encoded><![CDATA[<p>Maxime,</p>
<p>Nope, this sample was built on and for Microsoft&#8217;s grid only. However, I&#8217;m pretty sure you&#8217;ll be able to get a snippet in their forum.</p>
<p>&#8230;I guess I should point that out in the article.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Moving WPF DataGrid Rows using Drag and Drop by Maxime Rouiller</title>
		<link>http://www.hardcodet.net/2009/03/moving-data-grid-rows-using-drag-and-drop/comment-page-1#comment-552</link>
		<dc:creator>Maxime Rouiller</dc:creator>
		<pubDate>Wed, 17 Jun 2009 19:40:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.hardcodet.net/?p=304#comment-552</guid>
		<description>Have you tried this code on the free Xceed grid?</description>
		<content:encoded><![CDATA[<p>Have you tried this code on the free Xceed grid?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Multithreaded WPF Progress Dialog by Philipp Sumi</title>
		<link>http://www.hardcodet.net/2008/01/wpf-progress-dialog/comment-page-1#comment-547</link>
		<dc:creator>Philipp Sumi</dc:creator>
		<pubDate>Mon, 15 Jun 2009 18:42:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.hardcodet.net/net/wpf/2008/01/wpf-progress-dialog#comment-547</guid>
		<description>You can invoke a local method that updates your UI from within the worker thread in the sample. Just make sure you don't invoke it directly, but use Dispatcher.Invoke or Dispatcher.BeginInvoke. Google these methods for further information, and you should be fine :)</description>
		<content:encoded><![CDATA[<p>You can invoke a local method that updates your UI from within the worker thread in the sample. Just make sure you don&#8217;t invoke it directly, but use Dispatcher.Invoke or Dispatcher.BeginInvoke. Google these methods for further information, and you should be fine <img src='http://www.hardcodet.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Multithreaded WPF Progress Dialog by ADH</title>
		<link>http://www.hardcodet.net/2008/01/wpf-progress-dialog/comment-page-1#comment-545</link>
		<dc:creator>ADH</dc:creator>
		<pubDate>Mon, 15 Jun 2009 17:57:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.hardcodet.net/net/wpf/2008/01/wpf-progress-dialog#comment-545</guid>
		<description>Hi Philipp, thanks so much for your suggestion about using a thread. Great example here. I tried to change your Progress Dialog example to rather update a progressBar on a statusBar of the main form but after much playing around, I'm not sure if this is even possible. Would you be able to point me in the right direction?
Many thanks!</description>
		<content:encoded><![CDATA[<p>Hi Philipp, thanks so much for your suggestion about using a thread. Great example here. I tried to change your Progress Dialog example to rather update a progressBar on a statusBar of the main form but after much playing around, I&#8217;m not sure if this is even possible. Would you be able to point me in the right direction?<br />
Many thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on WPF Ribbon: RibbonCommands Can Cause Memory Leaks by GT</title>
		<link>http://www.hardcodet.net/2009/04/wpf-ribboncommand-memory-leak/comment-page-1#comment-539</link>
		<dc:creator>GT</dc:creator>
		<pubDate>Fri, 12 Jun 2009 18:18:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.hardcodet.net/2009/04/wpf-ribboncommand-memory-leak#comment-539</guid>
		<description>This helped me a lot, thank you!</description>
		<content:encoded><![CDATA[<p>This helped me a lot, thank you!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on WPF NotifyIcon by Philipp Sumi</title>
		<link>http://www.hardcodet.net/projects/wpf-notifyicon/comment-page-1#comment-533</link>
		<dc:creator>Philipp Sumi</dc:creator>
		<pubDate>Wed, 10 Jun 2009 17:47:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.hardcodet.net/?page_id=452#comment-533</guid>
		<description>You can compare a namespace with a using statement in C# - it basically tells the XAML parser where to find the declared class. For further information, have a look here:
http://msdn.microsoft.com/en-us/library/ms747086.aspx</description>
		<content:encoded><![CDATA[<p>You can compare a namespace with a using statement in C# - it basically tells the XAML parser where to find the declared class. For further information, have a look here:<br />
<a href="http://msdn.microsoft.com/en-us/library/ms747086.aspx" onclick="javascript:pageTracker._trackPageview('/outbound/comment/msdn.microsoft.com');" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms747086.aspx</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on WPF NotifyIcon by mousou2003</title>
		<link>http://www.hardcodet.net/projects/wpf-notifyicon/comment-page-1#comment-531</link>
		<dc:creator>mousou2003</dc:creator>
		<pubDate>Wed, 10 Jun 2009 17:28:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.hardcodet.net/?page_id=452#comment-531</guid>
		<description>Hi,

Can you describe a little bit more the need of this namesapace:
 xmlns:tb="http://www.hardcodet.net/taskbar"&gt;</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>Can you describe a little bit more the need of this namesapace:<br />
 xmlns:tb=&#8221;http://www.hardcodet.net/taskbar&#8221;&gt;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Combining WPF Validation Rules and IDataErrorInfo to Resolve Conversion Errors by Raj</title>
		<link>http://www.hardcodet.net/2009/01/combinding-wpf-validation-rules-and-idataerrorinfo-to-validate-conversion-errors/comment-page-1#comment-530</link>
		<dc:creator>Raj</dc:creator>
		<pubDate>Wed, 10 Jun 2009 14:43:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.hardcodet.net/?p=229#comment-530</guid>
		<description>Wow..! its helpful</description>
		<content:encoded><![CDATA[<p>Wow..! its helpful</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ComboBox SelectedItem and ItemsSource: Order Matters by Scott Rogers</title>
		<link>http://www.hardcodet.net/2009/01/xaml-binding-declaration-order-matters/comment-page-1#comment-529</link>
		<dc:creator>Scott Rogers</dc:creator>
		<pubDate>Wed, 10 Jun 2009 11:20:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.hardcodet.net/2009/01/xaml-binding-declaration-order-matters#comment-529</guid>
		<description>Wow... I wasted alot of time cursing WPF and trying to find a solution to the problem you describe above. Thankfully your fix addresses the issue, but I agree this does feel like a dirty hack. 

Whilst .NET and particularly wpf xaml is code-order-sensitive, incorrectly ordered code (leading to missing references) is usually picked up as a compile-time, or run-time exception. This however is not and cannot be desired behviour!</description>
		<content:encoded><![CDATA[<p>Wow&#8230; I wasted alot of time cursing WPF and trying to find a solution to the problem you describe above. Thankfully your fix addresses the issue, but I agree this does feel like a dirty hack. </p>
<p>Whilst .NET and particularly wpf xaml is code-order-sensitive, incorrectly ordered code (leading to missing references) is usually picked up as a compile-time, or run-time exception. This however is not and cannot be desired behviour!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Organizing Heterogeneous Data on a WPF TreeView by Philipp Sumi</title>
		<link>http://www.hardcodet.net/2008/12/heterogeneous-wpf-treeview/comment-page-1#comment-510</link>
		<dc:creator>Philipp Sumi</dc:creator>
		<pubDate>Wed, 03 Jun 2009 07:25:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.hardcodet.net/?p=138#comment-510</guid>
		<description>urza - it's just a mockup, so there's no custom icons. Have a look at www.balsamiq.com.</description>
		<content:encoded><![CDATA[<p>urza - it&#8217;s just a mockup, so there&#8217;s no custom icons. Have a look at <a href="http://www.balsamiq.com" onclick="javascript:pageTracker._trackPageview('/outbound/comment/www.balsamiq.com');" rel="nofollow">http://www.balsamiq.com</a>.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Organizing Heterogeneous Data on a WPF TreeView by urza</title>
		<link>http://www.hardcodet.net/2008/12/heterogeneous-wpf-treeview/comment-page-1#comment-508</link>
		<dc:creator>urza</dc:creator>
		<pubDate>Tue, 02 Jun 2009 19:20:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.hardcodet.net/?p=138#comment-508</guid>
		<description>I like the incons in the tree :) are they somewhere available?</description>
		<content:encoded><![CDATA[<p>I like the incons in the tree <img src='http://www.hardcodet.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> are they somewhere available?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on I&#8217;m a WPF Disciple by Pete O'Hanlon</title>
		<link>http://www.hardcodet.net/2009/05/me-wpf-disciple/comment-page-1#comment-504</link>
		<dc:creator>Pete O'Hanlon</dc:creator>
		<pubDate>Mon, 01 Jun 2009 13:51:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.hardcodet.net/2009/05/me-wpf-disciple#comment-504</guid>
		<description>Congratulations, and welcome mate.</description>
		<content:encoded><![CDATA[<p>Congratulations, and welcome mate.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on WPF NotifyIcon by Russian Coding 4 Fun : WPF-компонент NotifyIcon</title>
		<link>http://www.hardcodet.net/projects/wpf-notifyicon/comment-page-1#comment-499</link>
		<dc:creator>Russian Coding 4 Fun : WPF-компонент NotifyIcon</dc:creator>
		<pubDate>Sun, 31 May 2009 23:52:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.hardcodet.net/?page_id=452#comment-499</guid>
		<description>[...] Теперь наши мучения кончились — Филипп Суми (Philipp Sumi) разработал WPF-компонент NotifyIcon [...]</description>
		<content:encoded><![CDATA[<p>[...] Теперь наши мучения кончились — Филипп Суми (Philipp Sumi) разработал WPF-компонент NotifyIcon [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using Attached Properties to Create a WPF Image Button by c_manboy</title>
		<link>http://www.hardcodet.net/2009/01/create-wpf-image-button-through-attached-properties/comment-page-1#comment-491</link>
		<dc:creator>c_manboy</dc:creator>
		<pubDate>Thu, 28 May 2009 21:20:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.hardcodet.net/?p=223#comment-491</guid>
		<description>I'm getting an "Object not set to an instance of an object." error when I place the class in a separate project.  If I place it in the same project as the button, it works fine.  I'm sure its something easy, but I'm not seeing it.

Any suggestions?</description>
		<content:encoded><![CDATA[<p>I&#8217;m getting an &#8220;Object not set to an instance of an object.&#8221; error when I place the class in a separate project.  If I place it in the same project as the button, it works fine.  I&#8217;m sure its something easy, but I&#8217;m not seeing it.</p>
<p>Any suggestions?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on I&#8217;m a WPF Disciple by rainman</title>
		<link>http://www.hardcodet.net/2009/05/me-wpf-disciple/comment-page-1#comment-489</link>
		<dc:creator>rainman</dc:creator>
		<pubDate>Thu, 28 May 2009 16:44:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.hardcodet.net/2009/05/me-wpf-disciple#comment-489</guid>
		<description>Congratulations on receiving the honor!</description>
		<content:encoded><![CDATA[<p>Congratulations on receiving the honor!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on NetDrives - Simple Network Share Management by MWL</title>
		<link>http://www.hardcodet.net/projects/netdrives/comment-page-1#comment-485</link>
		<dc:creator>MWL</dc:creator>
		<pubDate>Thu, 28 May 2009 13:12:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.hardcodet.net/?page_id=322#comment-485</guid>
		<description>Thanks for your response. 

MWL</description>
		<content:encoded><![CDATA[<p>Thanks for your response. </p>
<p>MWL</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on NetDrives - Simple Network Share Management by Philipp Sumi</title>
		<link>http://www.hardcodet.net/projects/netdrives/comment-page-1#comment-484</link>
		<dc:creator>Philipp Sumi</dc:creator>
		<pubDate>Thu, 28 May 2009 12:58:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.hardcodet.net/?page_id=322#comment-484</guid>
		<description>MWL,
I was thinking about a complete solution that covers all these scenarios, but this won't happen in the near future. We'll see ;)</description>
		<content:encoded><![CDATA[<p>MWL,<br />
I was thinking about a complete solution that covers all these scenarios, but this won&#8217;t happen in the near future. We&#8217;ll see <img src='http://www.hardcodet.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on NetDrives - Simple Network Share Management by MWL</title>
		<link>http://www.hardcodet.net/projects/netdrives/comment-page-1#comment-483</link>
		<dc:creator>MWL</dc:creator>
		<pubDate>Thu, 28 May 2009 12:51:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.hardcodet.net/?page_id=322#comment-483</guid>
		<description>Great tool. Any plans to add access to:
1. FTP sites; and/or
2. Web site mapped with Windows map network drive?

Thanks

MWL</description>
		<content:encoded><![CDATA[<p>Great tool. Any plans to add access to:<br />
1. FTP sites; and/or<br />
2. Web site mapped with Windows map network drive?</p>
<p>Thanks</p>
<p>MWL</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Custom MarkupExtension &amp;&amp; Nested Extensions == Bug by Validierung von Properties in MVVM - Thomas Rosenstein</title>
		<link>http://www.hardcodet.net/2008/04/nested-markup-extension-bug/comment-page-1#comment-480</link>
		<dc:creator>Validierung von Properties in MVVM - Thomas Rosenstein</dc:creator>
		<pubDate>Wed, 27 May 2009 23:52:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.hardcodet.net/2008/04/nested-markup-extension-bug#comment-480</guid>
		<description>[...] Auf der XAML-Seite erfolgt die Validierung durch ein CustomBinding basierend auf der BindingDecoratorBase-Klasse von Philipp Sumi. Achtung:&#160;Bug. [...]</description>
		<content:encoded><![CDATA[<p>[...] Auf der XAML-Seite erfolgt die Validierung durch ein CustomBinding basierend auf der BindingDecoratorBase-Klasse von Philipp Sumi. Achtung:&#160;Bug. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A base class for custom WPF binding markup extensions by Validierung von Properties in MVVM - Thomas Rosenstein</title>
		<link>http://www.hardcodet.net/2008/04/wpf-custom-binding-class/comment-page-1#comment-479</link>
		<dc:creator>Validierung von Properties in MVVM - Thomas Rosenstein</dc:creator>
		<pubDate>Wed, 27 May 2009 23:45:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.hardcodet.net/2008/04/wpf-custom-binding-class#comment-479</guid>
		<description>[...] der XAML-Seite erfolgt die Validierung durch ein CustomBinding basierend auf der BindingDecoratorBase-Klasse von Philipp Sumi. [...]</description>
		<content:encoded><![CDATA[<p>[...] der XAML-Seite erfolgt die Validierung durch ein CustomBinding basierend auf der BindingDecoratorBase-Klasse von Philipp Sumi. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A base class for custom WPF binding markup extensions by kevin Mocha - Combining WPF Validation Rules and IDataErrorInfo to Resolve Conversion Errors</title>
		<link>http://www.hardcodet.net/2008/04/wpf-custom-binding-class/comment-page-1#comment-466</link>
		<dc:creator>kevin Mocha - Combining WPF Validation Rules and IDataErrorInfo to Resolve Conversion Errors</dc:creator>
		<pubDate>Tue, 26 May 2009 19:08:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.hardcodet.net/2008/04/wpf-custom-binding-class#comment-466</guid>
		<description>[...] http://www.hardcodet.net/2008/04/wpf-custom-binding-class [...]</description>
		<content:encoded><![CDATA[<p>[...] <a href="http://www.hardcodet.net/2008/04/wpf-custom-binding-class"  rel="nofollow">http://www.hardcodet.net/2008/04/wpf-custom-binding-class</a> [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Combining WPF Validation Rules and IDataErrorInfo to Resolve Conversion Errors by kevin Mocha - Combining WPF Validation Rules and IDataErrorInfo to Resolve Conversion Errors</title>
		<link>http://www.hardcodet.net/2009/01/combinding-wpf-validation-rules-and-idataerrorinfo-to-validate-conversion-errors/comment-page-1#comment-465</link>
		<dc:creator>kevin Mocha - Combining WPF Validation Rules and IDataErrorInfo to Resolve Conversion Errors</dc:creator>
		<pubDate>Tue, 26 May 2009 19:08:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.hardcodet.net/?p=229#comment-465</guid>
		<description>[...] http://www.hardcodet.net/2009/01/combinding-wpf-validation-rules-and-idataerrorinfo-to-validate-conv... [...]</description>
		<content:encoded><![CDATA[<p>[...] <a href="http://www.hardcodet.net/2009/01/combinding-wpf-validation-rules-and-idataerrorinfo-to-validate-conv.."  rel="nofollow">http://www.hardcodet.net/2009/01/combinding-wpf-validation-rules-and-idataerrorinfo-to-validate-conv..</a>. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on WPF NotifyIcon by WPF NotifyIcon control! &#124; Coded Style</title>
		<link>http://www.hardcodet.net/projects/wpf-notifyicon/comment-page-1#comment-463</link>
		<dc:creator>WPF NotifyIcon control! &#124; Coded Style</dc:creator>
		<pubDate>Tue, 26 May 2009 17:13:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.hardcodet.net/?page_id=452#comment-463</guid>
		<description>[...] WPF NotifyIcon control!      If you’ve ever had a WPF application and wanted a notify icon in your system tray, you’ve had to import the System.Windows bits.&#160; This always seemed to me as a hack to get it but at least I could do.&#160; Fear not anymore, Philipp Sumi has created a WPF NotifyIcon component! [...]</description>
		<content:encoded><![CDATA[<p>[...] WPF NotifyIcon control!      If you’ve ever had a WPF application and wanted a notify icon in your system tray, you’ve had to import the System.Windows bits.&#160; This always seemed to me as a hack to get it but at least I could do.&#160; Fear not anymore, Philipp Sumi has created a WPF NotifyIcon component! [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Detecting Double Click Events on the WPF DataGrid by AC</title>
		<link>http://www.hardcodet.net/2009/03/detecting-double-click-events-on-the-wpf-datagrid/comment-page-1#comment-461</link>
		<dc:creator>AC</dc:creator>
		<pubDate>Tue, 26 May 2009 13:19:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.hardcodet.net/2009/03/detecting-double-click-events-on-the-wpf-datagrid#comment-461</guid>
		<description>Using the WPF datagrid for the first time and even with the Windows form datagrid the event would fire no matter where the doubleclick was done.  

I found that the following "if" was all I needed to be check to see if a row was selected.

      private void datagrid1_MouseDoubleClick(object sender, MouseButtonEventArgs e)
        {
        
if (e.LeftButton == MouseButtonState.Pressed &amp; datagrid1.SelectedItem != null)</description>
		<content:encoded><![CDATA[<p>Using the WPF datagrid for the first time and even with the Windows form datagrid the event would fire no matter where the doubleclick was done.  </p>
<p>I found that the following &#8220;if&#8221; was all I needed to be check to see if a row was selected.</p>
<p>      private void datagrid1_MouseDoubleClick(object sender, MouseButtonEventArgs e)<br />
        {</p>
<p>if (e.LeftButton == MouseButtonState.Pressed &amp; datagrid1.SelectedItem != null)</p>
]]></content:encoded>
	</item>
</channel>
</rss>
