Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

TextBox Password Char

the textbox in Windows Forms used to have a PasswordChar property. In WPF there is an extra control for that: PasswordBox. This wouldn't be a problem but my application runs on an touchscreen only device. Unfortunately the password box does not support the on screen keyboard. I was wondering if there is a way of adding the password char feature to the standard textbox.

like image 276
David Avatar asked Apr 23 '12 14:04

David


People also ask

Which Contorl for password character masking in C?

In C#, MaskedTextBox control gives a validation procedure for the user input on the form like date, phone numbers, etc. Or in other words, it is used to provide a mask which differentiates between proper and improper user input.

What is PasswordChar in Visual Basic?

Gets or sets the character used to mask characters of a password in a single-line TextBox control.

What is PasswordChar property?

This property lets you set which character to substitute in the display of the cell contents when a user types in a password.


1 Answers

This answer may provide you with what you need.

like image 166
Stewbob Avatar answered Oct 04 '22 22:10

Stewbob