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 Contracts_FORM_1 : Form
- {
- public Contracts_FORM_1()
- {
- InitializeComponent();
- }
- private void contractsBindingNavigatorSaveItem_Click(object sender, EventArgs e)
- {
- this.Validate();
- this.contractsBindingSource.EndEdit();
- this.tableAdapterManager.UpdateAll(this._ГЕС_5DataSet);
- }
- private void Contracts_FORM_1_Load(object sender, EventArgs e)
- {
- // TODO: данная строка кода позволяет загрузить данные в таблицу "_ГЕС_5DataSet.Contracts". При необходимости она может быть перемещена или удалена.
- this.contractsTableAdapter.Fill(this._ГЕС_5DataSet.Contracts);
- }
- }
- }
|