Form4.cs 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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 Form4 : Form
  13. {
  14. public Form4()
  15. {
  16. InitializeComponent();
  17. }
  18. private void clientServiceBindingNavigatorSaveItem_Click(object sender, EventArgs e)
  19. {
  20. this.Validate();
  21. this.clientServiceBindingSource.EndEdit();
  22. this.tableAdapterManager.UpdateAll(this.dB_Кузьменко_V2DataSet);
  23. }
  24. private void Form4_Load(object sender, EventArgs e)
  25. {
  26. // TODO: данная строка кода позволяет загрузить данные в таблицу "dB_Кузьменко_V2DataSet.ClientService". При необходимости она может быть перемещена или удалена.
  27. this.clientServiceTableAdapter.Fill(this.dB_Кузьменко_V2DataSet.ClientService);
  28. }
  29. private void button1_Click(object sender, EventArgs e)
  30. {
  31. Form1 form4 = new Form1();
  32. form4.Show();
  33. this.Hide();
  34. }
  35. }
  36. }