FormMain.cs 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  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.Threading.Tasks;
  9. using System.Windows.Forms;
  10. namespace СУБД_Техносервис
  11. {
  12. public partial class FormMain : Form
  13. {
  14. public FormMain()
  15. {
  16. InitializeComponent();
  17. }
  18. string Captcha;
  19. /// <summary>
  20. /// сгенерировать символы капчи
  21. /// </summary>
  22. void GetCapcha()
  23. {
  24. Captcha = Guid.NewGuid().ToString().Substring(0, 4);
  25. LblC1.Text = Captcha[0].ToString();
  26. LblC2.Text = Captcha[1].ToString();
  27. LblC3.Text = Captcha[2].ToString();
  28. LblC4.Text = Captcha[3].ToString();
  29. TbxCapcha.Clear();
  30. }
  31. private void FormMain_Load(object sender, EventArgs e)
  32. {
  33. // TODO: данная строка кода позволяет загрузить данные в таблицу "techServiceBAUDataSet.Employee". При необходимости она может быть перемещена или удалена.
  34. this.employeeTableAdapter.Fill(this.techServiceBAUDataSet.Employee);
  35. GetCapcha();
  36. }
  37. private void CbxShowPassw_CheckedChanged(object sender, EventArgs e)
  38. {
  39. TbxPassw.UseSystemPasswordChar = !TbxPassw.UseSystemPasswordChar;
  40. }
  41. private void BtnVhod_Click(object sender, EventArgs e)
  42. {
  43. if (TbxCapcha.Text != Captcha && PanelCapcha.Visible == true)
  44. {
  45. GetCapcha();
  46. BtnVhod.Enabled = false;
  47. TimerForLogin.Start();
  48. MessageBox.Show("Неверная капча.", "Внимание!", MessageBoxButtons.OK, MessageBoxIcon.Warning);
  49. return;
  50. }
  51. BsEmployee.Filter = $"Password = '{TbxPassw.Text}' and Login = '{TbxLogin.Text}'";
  52. if (BsEmployee.Count == 0)
  53. {
  54. if (!PanelCapcha.Visible)
  55. {
  56. PanelCapcha.Visible = true;
  57. }
  58. else
  59. {
  60. BtnVhod.Enabled = false;
  61. TimerForLogin.Start();
  62. }
  63. GetCapcha();
  64. MessageBox.Show("Неверный логин или пароль.", "Внимание!", MessageBoxButtons.OK, MessageBoxIcon.Warning);
  65. return;
  66. }
  67. FormWorkPlace FrmWork = new FormWorkPlace();
  68. this.Hide();
  69. FrmWork.ShowDialog();
  70. this.Show();
  71. GetCapcha();
  72. TbxLogin.Clear();
  73. TbxPassw.Clear();
  74. PanelCapcha.Visible = false;
  75. TbxCapcha.Clear();
  76. }
  77. private void PCapcha_Paint(object sender, PaintEventArgs e)
  78. {
  79. Random Rnd = new Random();
  80. for (int i = 0; i < 7; i++)
  81. {
  82. e.Graphics.DrawLine(new Pen(Color.Black, 2), 0, Rnd.Next(PCapcha.Height), PCapcha.Width, Rnd.Next(PCapcha.Height));
  83. }
  84. }
  85. private void button1_Click(object sender, EventArgs e)
  86. {
  87. GetCapcha();
  88. }
  89. private void TimerForLogin_Tick(object sender, EventArgs e)
  90. {
  91. BtnVhod.Enabled = true;
  92. TimerForLogin.Stop();
  93. }
  94. }
  95. }