TextBox.UseSystemPasswordChar 属性

定义

获取或设置一个值,该值指示 TextBox 控件中的文本是否作为默认密码字符显示。

public:
 property bool UseSystemPasswordChar { bool get(); void set(bool value); };
public bool UseSystemPasswordChar { get; set; }
member this.UseSystemPasswordChar : bool with get, set
Public Property UseSystemPasswordChar As Boolean

属性值

如果 TextBox 控件中的文本应该以默认的密码字符显示,则为 true;否则为 false

注解

属性 UseSystemPasswordChar 优先于 PasswordChar 属性。 每当 UseSystemPasswordChar 设置为 true时,将使用默认的系统密码字符,并忽略 的任何 PasswordChar 字符集。

重要

TextBox当 由于 PasswordCharUseSystemPasswordCharReadOnlytrue而处于密码模式时, 处于TextBox受限模式。 在此模式下, ImeMode 将禁用 ,但会缓存当前 ImeMode ,以便在 变为不受限制时 TextBox 可以还原它。 切换 ReadOnly 是一种常见方案。 ImeMode当控件处于受限模式时,将隐藏 。 从设计器的角度来看, ImeMode 显示的值是实际值。

适用于

另请参阅