TextBox Password Char

char, controls, passwords, textbox, wpf

Solution

This answer may provide you with what you need.

Problem

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.

Original source

Related problems