PasswordBox.PasswordChar 属性

定义

获取或设置 PasswordBox 的掩码字符。

public:
 property char PasswordChar { char get(); void set(char value); };
public char PasswordChar { get; set; }
member this.PasswordChar : char with get, set
Public Property PasswordChar As Char

属性值

Char

要在用户向 PasswordBox 中输入文本时回显的掩码字符。 默认值为项目符号字符 (•) 。

示例

以下示例演示如何设置 PasswordChar 元素的属性 PasswordBox

<PasswordBox
  Name="pwdBox" 
  MaxLength="64"
  PasswordChar="#"
  PasswordChanged="PasswordChangedHandler"  
/>

下面的示例演示如何以编程方式设置 PasswordChar 属性。

// Change the password masking character to a period.
pwdBox.PasswordChar = '.';
' Change the password masking character to a period.
pwdBox.PasswordChar = "."c

注解

当文本输入到 a 中 PasswordBox时,此属性指定的掩码字符会在密码输入字段中回显,而不是实际密码本身。 这有助于防止密码在输入时向临时观察者公开。

依赖项属性信息

标识符字段 PasswordCharProperty
元数据属性设置为 true

适用于