WindowsForm

[C#] Formにパスワード入力欄を作成する

Formにパスワード入力欄を作成する方法です

PasswordCharを使う方法と
UseSystemPasswordChar を使う方法の2種類あります。

サンプル

例1)マスク文字を指定する方法(PasswordChar)


using System.Windows.Forms;

textBox1.PasswordChar = '*';

(表示例)
WindowsForm(textBox1.PasswordChar)

例2)システムのマスク文字を使用する方法(UseSystemPasswordChar)


using System.Windows.Forms;

textBox1.UseSystemPasswordChar = true;

(表示例)
WindowsForm(textBox1.UseSystemPasswordChar)

備考

  • PasswordChar とUseSystemPasswordChar を同時に指定した場合は、UseSystemPasswordCharの設定が優先されます。
  • UseSystemPasswordCharは、.NETFramework2.0以降の環境で使用できます。

-WindowsForm
-