<?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: Using a value converter to bind to Visibility in the Silverlight data grid</title>
	<atom:link href="http://www.jeff.wilcox.name/2008/07/visibility-type-converter/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.jeff.wilcox.name/2008/07/visibility-type-converter/</link>
	<description>Silverlight, rich client apps and web development</description>
	<lastBuildDate>Mon, 06 Feb 2012 19:09:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Jared Barneck</title>
		<link>http://www.jeff.wilcox.name/2008/07/visibility-type-converter/comment-page-1/#comment-7848</link>
		<dc:creator>Jared Barneck</dc:creator>
		<pubDate>Tue, 30 Aug 2011 04:13:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.jeff.wilcox.name/2008/07/13/visibility-type-converter/#comment-7848</guid>
		<description>I wrote a post that extends this post with more information.

&lt;a href=&quot;http://www.rhyous.com/2011/02/22/binding-visibility-to-a-bool-value-in-wpf/&quot; rel=&quot;nofollow&quot;&gt;Binding Visibility to a bool value in WPF&lt;/a&gt;

Hope it helps out readers who need a few more examples and need to do a little more customization.</description>
		<content:encoded><![CDATA[<p>I wrote a post that extends this post with more information.</p>
<p><a href="http://www.rhyous.com/2011/02/22/binding-visibility-to-a-bool-value-in-wpf/" rel="nofollow">Binding Visibility to a bool value in WPF</a></p>
<p>Hope it helps out readers who need a few more examples and need to do a little more customization.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SLCoder25</title>
		<link>http://www.jeff.wilcox.name/2008/07/visibility-type-converter/comment-page-1/#comment-7846</link>
		<dc:creator>SLCoder25</dc:creator>
		<pubDate>Sat, 27 Aug 2011 23:43:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.jeff.wilcox.name/2008/07/13/visibility-type-converter/#comment-7846</guid>
		<description>Jeff, really nice post! I will use it a lot i&#039;m sure. Sending this link to work now.

I have a situation where I need to set the tab order for some textboxes in a list box. the textboxes and other controls in the listboxitem are added when databinding occurs. Will a converter solve this issue in SL4?</description>
		<content:encoded><![CDATA[<p>Jeff, really nice post! I will use it a lot i&#8217;m sure. Sending this link to work now.</p>
<p>I have a situation where I need to set the tab order for some textboxes in a list box. the textboxes and other controls in the listboxitem are added when databinding occurs. Will a converter solve this issue in SL4?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alshameerb</title>
		<link>http://www.jeff.wilcox.name/2008/07/visibility-type-converter/comment-page-1/#comment-7844</link>
		<dc:creator>Alshameerb</dc:creator>
		<pubDate>Mon, 22 Aug 2011 05:14:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.jeff.wilcox.name/2008/07/13/visibility-type-converter/#comment-7844</guid>
		<description>HI This POST WAS REALLY HELPFUL &gt;&gt;&gt;THANKS A LOT.....</description>
		<content:encoded><![CDATA[<p>HI This POST WAS REALLY HELPFUL &gt;&gt;&gt;THANKS A LOT&#8230;..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike Barmettler</title>
		<link>http://www.jeff.wilcox.name/2008/07/visibility-type-converter/comment-page-1/#comment-7824</link>
		<dc:creator>Mike Barmettler</dc:creator>
		<pubDate>Fri, 05 Aug 2011 08:15:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.jeff.wilcox.name/2008/07/13/visibility-type-converter/#comment-7824</guid>
		<description>How about using a converter in resource Dictionary?</description>
		<content:encoded><![CDATA[<p>How about using a converter in resource Dictionary?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael Schall</title>
		<link>http://www.jeff.wilcox.name/2008/07/visibility-type-converter/comment-page-1/#comment-960</link>
		<dc:creator>Michael Schall</dc:creator>
		<pubDate>Wed, 03 Dec 2008 17:00:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.jeff.wilcox.name/2008/07/13/visibility-type-converter/#comment-960</guid>
		<description>You add a button handler the same way you would for a button outside the grid.  And you can get the object that was bound to the row of the grid from the button as it will be the DataContext of the button.</description>
		<content:encoded><![CDATA[<p>You add a button handler the same way you would for a button outside the grid.  And you can get the object that was bound to the row of the grid from the button as it will be the DataContext of the button.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dynamic Icons in the Silverlight TreeView</title>
		<link>http://www.jeff.wilcox.name/2008/07/visibility-type-converter/comment-page-1/#comment-900</link>
		<dc:creator>Dynamic Icons in the Silverlight TreeView</dc:creator>
		<pubDate>Mon, 24 Nov 2008 20:48:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.jeff.wilcox.name/2008/07/13/visibility-type-converter/#comment-900</guid>
		<description>[...] that convert between two different types of values (I know, shocking).&#160; A classic example is converting between a boolean and the Visibility enum.&#160; We’re going to apply the same concept but this time convert between a type (our business [...]</description>
		<content:encoded><![CDATA[<p>[...] that convert between two different types of values (I know, shocking).&nbsp; A classic example is converting between a boolean and the Visibility enum.&nbsp; We’re going to apply the same concept but this time convert between a type (our business [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jennifer Meyer</title>
		<link>http://www.jeff.wilcox.name/2008/07/visibility-type-converter/comment-page-1/#comment-739</link>
		<dc:creator>Jennifer Meyer</dc:creator>
		<pubDate>Wed, 05 Nov 2008 01:03:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.jeff.wilcox.name/2008/07/13/visibility-type-converter/#comment-739</guid>
		<description>Great post - just what I was looking to do. I am brand new to WPF and Silverlight, been an ASP.NET programmer for a long time. Your post was easy to follow and I was able to get my grid working in no time. Thanks!!</description>
		<content:encoded><![CDATA[<p>Great post &#8211; just what I was looking to do. I am brand new to WPF and Silverlight, been an ASP.NET programmer for a long time. Your post was easy to follow and I was able to get my grid working in no time. Thanks!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Luiz Mendes</title>
		<link>http://www.jeff.wilcox.name/2008/07/visibility-type-converter/comment-page-1/#comment-733</link>
		<dc:creator>Luiz Mendes</dc:creator>
		<pubDate>Tue, 04 Nov 2008 12:52:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.jeff.wilcox.name/2008/07/13/visibility-type-converter/#comment-733</guid>
		<description>How do you it  if the button is create in run time?</description>
		<content:encoded><![CDATA[<p>How do you it  if the button is create in run time?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeff Wilcox</title>
		<link>http://www.jeff.wilcox.name/2008/07/visibility-type-converter/comment-page-1/#comment-359</link>
		<dc:creator>Jeff Wilcox</dc:creator>
		<pubDate>Wed, 20 Aug 2008 01:18:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.jeff.wilcox.name/2008/07/13/visibility-type-converter/#comment-359</guid>
		<description>Herman,
Yeah, I wasn&#039;t actually jumping in to give a very complete story here. Let me spend some time finding a more complete solution and post about that soon.

-Jeff</description>
		<content:encoded><![CDATA[<p>Herman,<br />
Yeah, I wasn&#8217;t actually jumping in to give a very complete story here. Let me spend some time finding a more complete solution and post about that soon.</p>
<p>-Jeff</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Herman Dolder</title>
		<link>http://www.jeff.wilcox.name/2008/07/visibility-type-converter/comment-page-1/#comment-358</link>
		<dc:creator>Herman Dolder</dc:creator>
		<pubDate>Tue, 19 Aug 2008 22:38:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.jeff.wilcox.name/2008/07/13/visibility-type-converter/#comment-358</guid>
		<description>Very interesting, but how do you attach event handlers to the Buttons and how you identify which Button was Clicked ?

Thanks,

Herman</description>
		<content:encoded><![CDATA[<p>Very interesting, but how do you attach event handlers to the Buttons and how you identify which Button was Clicked ?</p>
<p>Thanks,</p>
<p>Herman</p>
]]></content:encoded>
	</item>
</channel>
</rss>

