PasswordDlg.cs 551 B

123456789101112131415161718192021222324
  1. using System.Windows.Forms;
  2. namespace ComPDFKitDemo
  3. {
  4. public partial class PasswordDlg : Form
  5. {
  6. public string password = "";
  7. public int press_key = 0;
  8. public PasswordDlg()
  9. {
  10. InitializeComponent();
  11. }
  12. private void passwordTextBox_KeyPress(object sender, KeyPressEventArgs e)
  13. {
  14. if (e.KeyChar == 13)
  15. {
  16. press_key = 13;
  17. password = this.passwordTextBox.Text;
  18. this.Close();
  19. }
  20. }
  21. }
  22. }