我使用以下链接中给出的简单Dialog
框作为粗略(这就是我需要的)密码输入框:
http://www.csharp-examples.net/inputbox-class/
如何设置文本以显示****
而不是密码?
答案 0 :(得分:5)
在该控件中,您有一个TextBox,将文本框的PasswordChar
属性设置为*
。
另见:如何:Create a Password Text Box with the Windows Forms TextBox Control
在控件的show方法中,在定义该文本框后,添加:
textBox.PasswordChar = '*';
答案 1 :(得分:1)
像这样使用
textBox1.PasswordChar = '*';
答案 2 :(得分:0)
来自How to: Create a Password Text Box with the Windows Forms TextBox Control
创建密码文本框
- 将
PasswordChar
控件的TextBox
属性设置为特定字符。PasswordChar
属性指定显示的字符 在文本框中。例如,如果您希望在星号中显示星号 密码框,为*
属性指定PasswordChar
Properties
窗口。然后,无论用户输入什么字符 文本框中会显示一个星号。
// The password character is an asterisk.
textBox1.PasswordChar = '*';
获取或设置用于屏蔽密码字符的字符 单行TextBox控件。
答案 3 :(得分:0)
textBox1.PasswordChar = '*';
只需在文本框中设置该属性即可。
答案 4 :(得分:0)
从Windows窗体的属性窗口