Comments for {Dev Tricks} http://dev-tricks.net Blogging developper tips and tricks Mon, 04 May 2009 22:55:12 +0000 http://wordpress.org/?v=2.9.2 hourly 1 Comment on Silverlight – Password field no longer missing by bad monkey http://dev-tricks.net/silverlight-password-field-no-longer-missing/comment-page-1#comment-91 bad monkey Mon, 04 May 2009 22:55:12 +0000 http://dev-tricks.net/?p=8#comment-91 nice job, and good adds Gongdo! nice job, and good adds Gongdo!

]]>
Comment on C# Using alias directives by Eber Irigoyen http://dev-tricks.net/c-sharp-using-alias-directives/comment-page-1#comment-87 Eber Irigoyen Tue, 21 Apr 2009 22:57:16 +0000 http://dev-tricks.net/?p=218#comment-87 yup, I've used this technique to hide generics complexity http://ebersys.blogspot.com/2006/08/hiding-generics-complexity.html yup, I’ve used this technique to hide generics complexity

http://ebersys.blogspot.com/2006/08/hiding-generics-complexity.html

]]>
Comment on Covariance and Contravariance in C#3 by Ronald Widha http://dev-tricks.net/covariance-and-contravariance-in-c-sharp-3/comment-page-1#comment-78 Ronald Widha Wed, 25 Mar 2009 05:57:32 +0000 http://dev-tricks.net/?p=203#comment-78 Very interesting. Looking forward to reading covariance and contravariance article in c#4 Very interesting.
Looking forward to reading covariance and contravariance article in c#4

]]>
Comment on Silverlight Custom Control – I by {Dev Tricks} » Blog Archive » Silverlight Custom Control - II : Properties http://dev-tricks.net/silverlight-custom-control-i/comment-page-1#comment-63 {Dev Tricks} » Blog Archive » Silverlight Custom Control - II : Properties Thu, 15 Jan 2009 10:14:45 +0000 http://dev-tricks.net/?p=76#comment-63 [...] {Dev Tricks} Blogging developper tips and tricks « Silverlight Custom Control - I [...] [...] {Dev Tricks} Blogging developper tips and tricks « Silverlight Custom Control – I [...]

]]>
Comment on Silverlight – Password field no longer missing by Tom Vedykneep http://dev-tricks.net/silverlight-password-field-no-longer-missing/comment-page-1#comment-62 Tom Vedykneep Thu, 18 Dec 2008 11:56:12 +0000 http://dev-tricks.net/?p=8#comment-62 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. 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.

]]>
Comment on Silverlight – Password field no longer missing by Gongdo http://dev-tricks.net/silverlight-password-field-no-longer-missing/comment-page-1#comment-42 Gongdo Fri, 26 Sep 2008 01:12:31 +0000 http://dev-tricks.net/?p=8#comment-42 Wow! Awesomely simple! However There are some problems. - You can copy&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&paste to use follow code in TextBox's KeyDown event handler. if ((Keyboard.Modifiers & ModifierKeys.Control) == ModifierKeys.Control) (sender as TextBox).Select(0, 0);) - You can make password.ttf to support your language's characters. (but it may not regconize upper/lower case.) Wow! Awesomely simple!
However There are some problems.
- You can copy&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&paste to use follow code in TextBox’s KeyDown event handler.
if ((Keyboard.Modifiers & ModifierKeys.Control) == ModifierKeys.Control)
(sender as TextBox).Select(0, 0);)
- You can make password.ttf to support your language’s characters.
(but it may not regconize upper/lower case.)

]]>
Comment on Silverlight – Password field no longer missing by Stasys http://dev-tricks.net/silverlight-password-field-no-longer-missing/comment-page-1#comment-32 Stasys Fri, 19 Sep 2008 17:54:31 +0000 http://dev-tricks.net/?p=8#comment-32 There is some problem with other charset like cyrilic, baltic etc. There is some problem with other charset like cyrilic, baltic etc.

]]>
Comment on Silverlight – Password field no longer missing by Palard Julien http://dev-tricks.net/silverlight-password-field-no-longer-missing/comment-page-1#comment-18 Palard Julien Sat, 30 Aug 2008 23:30:32 +0000 http://dev-tricks.net/?p=8#comment-18 To : Adrien Siffermann Hi, I agree, but, if you are writting your password it means you know it. Then I guess you won'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... To : Adrien Siffermann
Hi,

I agree, but, if you are writting your password it means you know it. Then I guess you won’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…

]]>
Comment on Silverlight – Password field no longer missing by Adrien Siffermann http://dev-tricks.net/silverlight-password-field-no-longer-missing/comment-page-1#comment-17 Adrien Siffermann Sat, 30 Aug 2008 23:18:17 +0000 http://dev-tricks.net/?p=8#comment-17 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't masked and you can get its content with a simple copy/paste, which isn't very secure. By the way, I think that writing a new TextBox with different input mode is really much sexy and secure. 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’t masked and you can get its content with a simple copy/paste, which isn’t very secure.
By the way, I think that writing a new TextBox with different input mode is really much sexy and secure.

]]>
Comment on Silverlight – Password field no longer missing by Palard Julien http://dev-tricks.net/silverlight-password-field-no-longer-missing/comment-page-1#comment-15 Palard Julien Thu, 28 Aug 2008 07:44:18 +0000 http://dev-tricks.net/?p=8#comment-15 Prasad : Thanks :) It's a font I made, so you can reuse it whithout any restrictions, it's free :) Prasad : Thanks :) It’s a font I made, so you can reuse it whithout any restrictions, it’s free :)

]]>