1234567891011121314151617181920212223242526272829303132333435 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Data;
- using System.Drawing;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.Windows.Forms;
- namespace ГЕС_5
- {
- public partial class Customer_FORM_1 : Form
- {
- public Customer_FORM_1()
- {
- InitializeComponent();
- }
- private void customerBindingNavigatorSaveItem_Click(object sender, EventArgs e)
- {
- this.Validate();
- this.customerBindingSource.EndEdit();
- this.tableAdapterManager.UpdateAll(this._ГЕС_5DataSet);
- }
- private void Customer_FORM_1_Load(object sender, EventArgs e)
- {
- // TODO: данная строка кода позволяет загрузить данные в таблицу "_ГЕС_5DataSet.Customer". При необходимости она может быть перемещена или удалена.
- this.customerTableAdapter.Fill(this._ГЕС_5DataSet.Customer);
- }
- }
- }
|