<?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: Silverlight &#8211; Password field no longer missing</title>
	<atom:link href="http://dev-tricks.net/silverlight-password-field-no-longer-missing/feed" rel="self" type="application/rss+xml" />
	<link>http://dev-tricks.net/silverlight-password-field-no-longer-missing</link>
	<description>Blogging developper tips and tricks</description>
	<lastBuildDate>Sun, 15 Apr 2012 18:01:12 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>By: Julien Palard</title>
		<link>http://dev-tricks.net/silverlight-password-field-no-longer-missing/comment-page-1#comment-2747</link>
		<dc:creator>Julien Palard</dc:creator>
		<pubDate>Mon, 14 Nov 2011 17:44:41 +0000</pubDate>
		<guid isPermaLink="false">http://dev-tricks.net/?p=8#comment-2747</guid>
		<description>Fixed ! Thx for reporting !</description>
		<content:encoded><![CDATA[<p>Fixed ! Thx for reporting !</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter</title>
		<link>http://dev-tricks.net/silverlight-password-field-no-longer-missing/comment-page-1#comment-2743</link>
		<dc:creator>Peter</dc:creator>
		<pubDate>Mon, 14 Nov 2011 12:52:45 +0000</pubDate>
		<guid isPermaLink="false">http://dev-tricks.net/?p=8#comment-2743</guid>
		<description>The download link is broken would be nice if you could fix that!!</description>
		<content:encoded><![CDATA[<p>The download link is broken would be nice if you could fix that!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>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>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>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>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>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>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>
	<item>
		<title>By: Prasad</title>
		<link>http://dev-tricks.net/silverlight-password-field-no-longer-missing/comment-page-1#comment-14</link>
		<dc:creator>Prasad</dc:creator>
		<pubDate>Thu, 28 Aug 2008 06:50:19 +0000</pubDate>
		<guid isPermaLink="false">http://dev-tricks.net/?p=8#comment-14</guid>
		<description>Hi, 

looking cool solution man.............
but need to ask one thing can i use this font in my application without any issue....
Is that font file is open to used by anybody?
or any issue about copyright there.........

Thanx in advance....</description>
		<content:encoded><![CDATA[<p>Hi, </p>
<p>looking cool solution man&#8230;&#8230;&#8230;&#8230;.<br />
but need to ask one thing can i use this font in my application without any issue&#8230;.<br />
Is that font file is open to used by anybody?<br />
or any issue about copyright there&#8230;&#8230;&#8230;</p>
<p>Thanx in advance&#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Justin-Josef Angel [MSFT]</title>
		<link>http://dev-tricks.net/silverlight-password-field-no-longer-missing/comment-page-1#comment-13</link>
		<dc:creator>Justin-Josef Angel [MSFT]</dc:creator>
		<pubDate>Tue, 26 Aug 2008 19:16:47 +0000</pubDate>
		<guid isPermaLink="false">http://dev-tricks.net/?p=8#comment-13</guid>
		<description>Awesome idea! very creative thinking. 

keep up the great job.</description>
		<content:encoded><![CDATA[<p>Awesome idea! very creative thinking. </p>
<p>keep up the great job.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

