FormProfil.cs 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.IO;
  7. using System.Linq;
  8. using System.Text;
  9. using System.Threading.Tasks;
  10. using System.Windows.Forms;
  11. namespace СУБД_Техносервис
  12. {
  13. public partial class FormProfil : Form
  14. {
  15. public FormProfil()
  16. {
  17. InitializeComponent();
  18. }
  19. private void employeeBindingNavigatorSaveItem_Click(object sender, EventArgs e)
  20. {
  21. this.Validate();
  22. this.BsMaster.EndEdit();
  23. this.tableAdapterManager.UpdateAll(this.techServiceBAUDataSet);
  24. }
  25. private void FormProfil_Load(object sender, EventArgs e)
  26. {
  27. // TODO: данная строка кода позволяет загрузить данные в таблицу "techServiceBAUDataSet.Employee". При необходимости она может быть перемещена или удалена.
  28. this.employeeTableAdapter.Fill(this.techServiceBAUDataSet.Employee);
  29. try
  30. {
  31. PbxPhoto.Image = Image.FromFile(Application.StartupPath + $"\\Photo\\{LblPhoto.Text}");
  32. }
  33. catch
  34. {
  35. PbxPhoto.Image = Image.FromFile(Application.StartupPath + $"\\Photo\\Picture.png");
  36. }
  37. LblPhoto.Hide();
  38. LblOldPassw.Hide();
  39. }
  40. private void BtnAdd_Click(object sender, EventArgs e)
  41. {
  42. if (TbxName.Text.Trim() == "" || TbxSurname.Text.Trim() == "" || TbxOtch.Text.Trim() == "")
  43. {
  44. MessageBox.Show("Заполните необходимые поля.", "Внимание!", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
  45. return;
  46. }
  47. if (TbxNewPassw.Text.Trim() != "")
  48. {
  49. if (TbxNewPassw.Text != TbxRefreshNewPassw.Text)
  50. {
  51. MessageBox.Show("Пароли должны совпадать.", "Внимание!", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
  52. return;
  53. }
  54. LblOldPassw.Text = TbxNewPassw.Text;
  55. }
  56. if (OfdPhoto.FileName != "")
  57. {
  58. string NewFileName = Application.StartupPath + $"\\Photo\\{Path.GetRandomFileName()}{Path.GetExtension(OfdPhoto.FileName)}";
  59. string[] Mas = OfdPhoto.FileName.Split('\\');
  60. LblPhoto.Text = Path.GetFileName(NewFileName);
  61. File.Copy(OfdPhoto.FileName, NewFileName);
  62. }
  63. BsMaster.EndEdit();
  64. this.employeeTableAdapter.Update(this.techServiceBAUDataSet.Employee);
  65. Close();
  66. }
  67. private void CbxShowPassw_CheckedChanged(object sender, EventArgs e)
  68. {
  69. TbxNewPassw.UseSystemPasswordChar = !CbxShowPassw.Checked;
  70. TbxRefreshNewPassw.UseSystemPasswordChar = !CbxShowPassw.Checked;
  71. }
  72. private void BtnLoadPhoto_Click(object sender, EventArgs e)
  73. {
  74. if (OfdPhoto.ShowDialog() == DialogResult.OK)
  75. {
  76. try
  77. {
  78. PbxPhoto.Image = Image.FromFile(OfdPhoto.FileName);
  79. }
  80. catch
  81. {
  82. MessageBox.Show("Не удалось загрузить фотографию!", "Внимание!", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
  83. OfdPhoto.FileName = "";
  84. }
  85. }
  86. }
  87. private void BtnClear_Click(object sender, EventArgs e)
  88. {
  89. if (MessageBox.Show("Очистить фотографию?", "Внимание!", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.No)
  90. return;
  91. LblPhoto.Text = "";
  92. PbxPhoto.Image = null;
  93. }
  94. }
  95. }