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