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

プロパティ値

ユーザーが 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

注釈

にテキストを入力 PasswordBoxすると、このプロパティで指定されたマスク文字は、実際のパスワード自体ではなく、パスワード入力フィールドにエコーされます。 これは、パスワードが入力されたときに、カジュアル オブザーバーに公開されるのを防ぐのに役立ちます。

依存プロパティ情報

識別子フィールド PasswordCharProperty
に設定されたメタデータ プロパティ true なし

適用対象