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