<?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 {Dev Tricks}</title>
	<atom:link href="http://dev-tricks.net/comments/feed" rel="self" type="application/rss+xml" />
	<link>http://dev-tricks.net</link>
	<description>Blogging developper tips and tricks</description>
	<lastBuildDate>Mon, 04 May 2009 22:55:12 +0200</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Silverlight &#8211; Password field no longer missing by bad monkey</title>
		<link>http://dev-tricks.net/silverlight-password-field-no-longer-missing/comment-page-1#comment-91</link>
		<dc:creator>bad monkey</dc:creator>
		<pubDate>Mon, 04 May 2009 22:55:12 +0000</pubDate>
		<guid isPermaLink="false">http://dev-tricks.net/?p=8#comment-91</guid>
		<description>nice job, and good adds Gongdo!</description>
		<content:encoded><![CDATA[<p>nice job, and good adds Gongdo!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on C# Using alias directives by Eber Irigoyen</title>
		<link>http://dev-tricks.net/c-sharp-using-alias-directives/comment-page-1#comment-87</link>
		<dc:creator>Eber Irigoyen</dc:creator>
		<pubDate>Tue, 21 Apr 2009 22:57:16 +0000</pubDate>
		<guid isPermaLink="false">http://dev-tricks.net/?p=218#comment-87</guid>
		<description>yup, I&#039;ve used this technique to hide generics complexity

http://ebersys.blogspot.com/2006/08/hiding-generics-complexity.html</description>
		<content:encoded><![CDATA[<p>yup, I&#8217;ve used this technique to hide generics complexity</p>
<p><a href="http://ebersys.blogspot.com/2006/08/hiding-generics-complexity.html" rel="nofollow">http://ebersys.blogspot.com/2006/08/hiding-generics-complexity.html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Covariance and Contravariance in C#3 by Ronald Widha</title>
		<link>http://dev-tricks.net/covariance-and-contravariance-in-c-sharp-3/comment-page-1#comment-78</link>
		<dc:creator>Ronald Widha</dc:creator>
		<pubDate>Wed, 25 Mar 2009 05:57:32 +0000</pubDate>
		<guid isPermaLink="false">http://dev-tricks.net/?p=203#comment-78</guid>
		<description>Very interesting.
Looking forward to reading covariance and contravariance article in c#4</description>
		<content:encoded><![CDATA[<p>Very interesting.<br />
Looking forward to reading covariance and contravariance article in c#4</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Silverlight Custom Control &#8211; I by {Dev Tricks} &#187; Blog Archive &#187; Silverlight Custom Control - II : Properties</title>
		<link>http://dev-tricks.net/silverlight-custom-control-i/comment-page-1#comment-63</link>
		<dc:creator>{Dev Tricks} &#187; Blog Archive &#187; Silverlight Custom Control - II : Properties</dc:creator>
		<pubDate>Thu, 15 Jan 2009 10:14:45 +0000</pubDate>
		<guid isPermaLink="false">http://dev-tricks.net/?p=76#comment-63</guid>
		<description>[...] {Dev Tricks} Blogging developper tips and tricks        &#171; Silverlight Custom Control - I [...]</description>
		<content:encoded><![CDATA[<p>[...] {Dev Tricks} Blogging developper tips and tricks        &laquo; Silverlight Custom Control &#8211; I [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Silverlight &#8211; Password field no longer missing by Tom Vedykneep</title>
		<link>http://dev-tricks.net/silverlight-password-field-no-longer-missing/comment-page-1#comment-62</link>
		<dc:creator>Tom Vedykneep</dc:creator>
		<pubDate>Thu, 18 Dec 2008 11:56:12 +0000</pubDate>
		<guid isPermaLink="false">http://dev-tricks.net/?p=8#comment-62</guid>
		<description>First of all congratulation for such a great site. I learned a lot reading article here today. I will make sure i visit this site once a day so i can learn more.</description>
		<content:encoded><![CDATA[<p>First of all congratulation for such a great site. I learned a lot reading article here today. I will make sure i visit this site once a day so i can learn more.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Silverlight &#8211; Password field no longer missing by Gongdo</title>
		<link>http://dev-tricks.net/silverlight-password-field-no-longer-missing/comment-page-1#comment-42</link>
		<dc:creator>Gongdo</dc:creator>
		<pubDate>Fri, 26 Sep 2008 01:12:31 +0000</pubDate>
		<guid isPermaLink="false">http://dev-tricks.net/?p=8#comment-42</guid>
		<description>Wow! Awesomely simple!
However There are some problems.
- You can copy&amp;paste it! :D
- Not works in non-English languages such as Korean, Japanese, Chinese...
  (TextBox will show there characters.)

Although this simple solution has 2 problems, you can find way like :
- You can prevent copy&amp;paste to use follow code in TextBox&#039;s KeyDown event handler.
   if ((Keyboard.Modifiers &amp; ModifierKeys.Control) == ModifierKeys.Control)
                (sender as TextBox).Select(0, 0);)
- You can make password.ttf to support your language&#039;s characters.
  (but it may not regconize upper/lower case.)</description>
		<content:encoded><![CDATA[<p>Wow! Awesomely simple!<br />
However There are some problems.<br />
- You can copy&amp;paste it! :D<br />
- Not works in non-English languages such as Korean, Japanese, Chinese&#8230;<br />
  (TextBox will show there characters.)</p>
<p>Although this simple solution has 2 problems, you can find way like :<br />
- You can prevent copy&amp;paste to use follow code in TextBox&#8217;s KeyDown event handler.<br />
   if ((Keyboard.Modifiers &amp; ModifierKeys.Control) == ModifierKeys.Control)<br />
                (sender as TextBox).Select(0, 0);)<br />
- You can make password.ttf to support your language&#8217;s characters.<br />
  (but it may not regconize upper/lower case.)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Silverlight &#8211; Password field no longer missing by Stasys</title>
		<link>http://dev-tricks.net/silverlight-password-field-no-longer-missing/comment-page-1#comment-32</link>
		<dc:creator>Stasys</dc:creator>
		<pubDate>Fri, 19 Sep 2008 17:54:31 +0000</pubDate>
		<guid isPermaLink="false">http://dev-tricks.net/?p=8#comment-32</guid>
		<description>There is some problem with other charset like cyrilic, baltic etc.</description>
		<content:encoded><![CDATA[<p>There is some problem with other charset like cyrilic, baltic etc.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Silverlight &#8211; Password field no longer missing by Palard Julien</title>
		<link>http://dev-tricks.net/silverlight-password-field-no-longer-missing/comment-page-1#comment-18</link>
		<dc:creator>Palard Julien</dc:creator>
		<pubDate>Sat, 30 Aug 2008 23:30:32 +0000</pubDate>
		<guid isPermaLink="false">http://dev-tricks.net/?p=8#comment-18</guid>
		<description>To : Adrien Siffermann
Hi,

I agree, but, if you are writting your password it means you know it. Then I guess you won&#039;t steal your own password by copying/pasting it.
In my opinion masking with stars is only a security for curious guys who might see your screen...</description>
		<content:encoded><![CDATA[<p>To : Adrien Siffermann<br />
Hi,</p>
<p>I agree, but, if you are writting your password it means you know it. Then I guess you won&#8217;t steal your own password by copying/pasting it.<br />
In my opinion masking with stars is only a security for curious guys who might see your screen&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Silverlight &#8211; Password field no longer missing by Adrien Siffermann</title>
		<link>http://dev-tricks.net/silverlight-password-field-no-longer-missing/comment-page-1#comment-17</link>
		<dc:creator>Adrien Siffermann</dc:creator>
		<pubDate>Sat, 30 Aug 2008 23:18:17 +0000</pubDate>
		<guid isPermaLink="false">http://dev-tricks.net/?p=8#comment-17</guid>
		<description>Hi,

You solution seems to be cool, but only seems... :)
In fact, because you are using a custom font, the content of the textbox isn&#039;t masked and you can get its content with a simple copy/paste, which isn&#039;t very secure.
By the way, I think that writing a new TextBox with different input mode is really much sexy and secure.</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>You solution seems to be cool, but only seems&#8230; :)<br />
In fact, because you are using a custom font, the content of the textbox isn&#8217;t masked and you can get its content with a simple copy/paste, which isn&#8217;t very secure.<br />
By the way, I think that writing a new TextBox with different input mode is really much sexy and secure.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Silverlight &#8211; Password field no longer missing by Palard Julien</title>
		<link>http://dev-tricks.net/silverlight-password-field-no-longer-missing/comment-page-1#comment-15</link>
		<dc:creator>Palard Julien</dc:creator>
		<pubDate>Thu, 28 Aug 2008 07:44:18 +0000</pubDate>
		<guid isPermaLink="false">http://dev-tricks.net/?p=8#comment-15</guid>
		<description>Prasad : Thanks :) It&#039;s a font I made, so you can reuse it whithout any restrictions, it&#039;s free :)</description>
		<content:encoded><![CDATA[<p>Prasad : Thanks :) It&#8217;s a font I made, so you can reuse it whithout any restrictions, it&#8217;s free :)</p>
]]></content:encoded>
	</item>
</channel>
</rss>
