MaskedTextProvider.IsPassword 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置一个值,该值确定是否应将密码保护应用于带格式的字符串。
public:
property bool IsPassword { bool get(); void set(bool value); };
public bool IsPassword { get; set; }
member this.IsPassword : bool with get, set
Public Property IsPassword As Boolean
属性值
如果要将输入字符串作为密码字符串进行处理,则为 true
;否则为 false
。 默认值为 false
。
注解
可以使用以下两种方式之一启动密码保护:
将 PasswordChar 属性设置为非
null
值。将 IsPassword 属性设置为
true
,这也会将 PasswordChar 属性设置为 DefaultPasswordChar 值。
IsPassword 由 ToDisplayString 和 ToString 方法用于确定是显示实际的输入字符还是用 PasswordChar来遮盖它们。