frmAuthority.cs 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Windows.Forms;
  9. namespace lyfzAttendance
  10. {
  11. public partial class frmAuthority : LYFZ.ComponentLibrary.BaseContentsFormMain
  12. {
  13. private static int MissCount { get; set; } = 3;
  14. public string AdminPassword { get; set; } = "";
  15. public frmAuthority(string password)
  16. {
  17. InitializeComponent();
  18. AdminPassword = password;
  19. this.btn_OK.Click += Btn_OK_Click;
  20. this.btn_Cancel.Click += Btn_Cancel_Click;
  21. }
  22. private void Btn_Cancel_Click(object sender, EventArgs e)
  23. {
  24. this.Close();
  25. }
  26. private void Btn_OK_Click(object sender, EventArgs e)
  27. {
  28. if (MissCount == 0)
  29. {
  30. MessageBox.Show("输入密码错误次数超过3次!");
  31. this.Close();
  32. return;
  33. }
  34. string md5 = LYFZ.WinAPI.SDKSecurity.MD5Encrypt(tx_Password.Text).ToLower();
  35. if ( md5.Equals(AdminPassword) )
  36. {
  37. this.DialogResult = DialogResult.OK;
  38. }
  39. else
  40. {
  41. MessageBox.Show("密码不正确!");
  42. MissCount--;
  43. }
  44. }
  45. }
  46. }