Exemplo n.º 1
0
 private void DisplayPassword_Tick(object sender, EventArgs e)
 {
     DisplayPassword.Stop();
     PinBox.PasswordChar = '*';
     DisplayPin.Enabled  = true;
     DisplayPin.Text     = "PIN再表示";
 }
Exemplo n.º 2
0
 private void DisplayPin_Click(object sender, EventArgs e)
 {
     DisplayPassword.Start();
     PinBox.PasswordChar = '\0';
     DisplayPin.Enabled  = false;
     DisplayPin.Text     = "PIN表示中";
 }