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 is32KostyuchenkoStudens { public partial class Form3 : Form { public Form3() { InitializeComponent(); } private void предметыBindingNavigatorSaveItem_Click(object sender, EventArgs e) { this.Validate(); this.предметыBindingSource.EndEdit(); this.tableAdapterManager.UpdateAll(this.is32KostStudentsDataSet); } private void Form3_Load(object sender, EventArgs e) { // TODO: данная строка кода позволяет загрузить данные в таблицу "is32KostStudentsDataSet.Предметы". При необходимости она может быть перемещена или удалена. this.предметыTableAdapter.Fill(this.is32KostStudentsDataSet.Предметы); } } }