AdmKlientForm.cs 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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 BeautySaloon
  11. {
  12. public partial class AdmKlientForm : Form
  13. {
  14. public AdmKlientForm()
  15. {
  16. InitializeComponent();
  17. }
  18. private void AdmKlientForm_Load(object sender, EventArgs e)
  19. {
  20. // TODO: данная строка кода позволяет загрузить данные в таблицу "beauty_saloonDataSet.Client". При необходимости она может быть перемещена или удалена.
  21. this.clientTableAdapter.Fill(this.beauty_saloonDataSet.Client);
  22. }
  23. private void editButton_Click(object sender, EventArgs e)
  24. {
  25. EditKlientForm form = new EditKlientForm();
  26. form.Show();
  27. this.Close();
  28. }
  29. private void ExitButton_Click(object sender, EventArgs e)
  30. {
  31. AdminForm form = new AdminForm();
  32. form.Show();
  33. this.Close();
  34. }
  35. }
  36. }