c# – 如何使用DevExpress WinForms TextEdit作为密码条目(带星号)?

根据http://www.devexpress.com/Products/NET/Controls/WinForms/Editors/editors/textEdit.xml,可以使用Developer Express TextEdit控件输入密码并隐藏字符.任何人都可以向我解释如何做到这一点?看起来它应该非常简单.

解决方法:

使用RepositoryItemTextEdit.PasswordChar Property

The TextEdit has a Properties.PasswordChar property, which is empty by default. By >setting some char there (for example, *), you will enable the functionality you require.

密码模式允许您屏蔽编辑器的文本.您可以通过两种方式激活密码模式:

>将UseSystemPasswordChar属性设置为true.编辑的文本将被掩盖如下:
>将PasswordChar属性设置为任何有效字符.该字符将用于掩盖编辑器的文本.

例如,如果PasswordChar属性设置为“*”,编辑器将按您的意愿工作.

注意:如果RepositoryItemMemoEdit.UseSystemPasswordChar属性设置为true,则忽略PasswordChar属性.

务实地,您可以将其设置为:

 TextEdit.Properties.PasswordChar = '*'

 

从GUI进入属性部分,然后进一步查找属性,您将获得PasswordChar属性,根据文档将其设置为有效字符.例如*.

上一篇:c# – ASPxPivotGrid排序


下一篇:How to: Access the Navigation Control 如何:访问导航控件