请大家指点 TextBox的PasswordChar使用
PasswordChar='*';表示密码输入方式。
而回到正常的输入方式,PasswordChar= ???
--------------------编程问答-------------------- textBox1.PasswordChar = (char)0; --------------------编程问答-------------------- PasswordChar='*';
表示密码输入方式。
而回到正常的输入方式,PasswordChar= ???
正常方式就设为空PasswordChar=''
如果想显示为1111111 PasswordChar='1'这样就不管你输入的是什么显示都为1
如果想为别的就设成别的随意的. --------------------编程问答-------------------- 没看明白哈。。 --------------------编程问答-------------------- up --------------------编程问答-------------------- 谢谢伴水清清 --------------------编程问答-------------------- 空就行 --------------------编程问答-------------------- txtIP.PasswordChar = '\0';
立马解决。 --------------------编程问答-------------------- txtIP.PasswordChar=string.empty; --------------------编程问答-------------------- 直接在右下角的属性栏将TextBox的属性Password设置为空就可以了
--------------------编程问答-------------------- dont know --------------------编程问答-------------------- --------------------编程问答-------------------- 什么叫做回到正常
举个例子吧
难道是又想别人看见输入的密码了吗 --------------------编程问答-------------------- 我用的是VB2005,楼上说的只能提示一下,但没什么作用,不过有启发,能通过的代码如下:
If CheckBox1.Checked = True Then
Txtsys.PasswordChar = Chr(0) ' 空的ASCII 的值为0
Else
Txtsys.PasswordChar = Chr(42) ' "*"
End If --------------------编程问答-------------------- 设为空就行了呀!
补充:.NET技术 , C#