private void btnAdd_Click(object sender, EventArgs e) { var addEditStudent = new AddEditStudent(); addEditStudent.FormClosing += AddEditStudent_FormClosing; addEditStudent.ShowDialog(); addEditStudent.FormClosing -= AddEditStudent_FormClosing; }
private void btnAdd_Click(object sender, EventArgs e) { var addEditStudent = new AddEditStudent(); addEditStudent.ShowDialog(); RefreshDataGridView(); }
private void btnEdit_Click(object sender, EventArgs e) { if (dgvDiary.SelectedRows.Count == 0) { MessageBox.Show("Proszę zaznacz ucznia, którego dane chcesz edytować"); return; } var addEditStudent = new AddEditStudent( Convert.ToInt32(dgvDiary.SelectedRows[0].Cells[0].Value)); addEditStudent.FormClosing += AddEditStudent_FormClosing; addEditStudent.ShowDialog(); addEditStudent.FormClosing -= AddEditStudent_FormClosing; }
private void btnEdit_Click(object sender, EventArgs e) { if (dgvDiary.SelectedRows.Count == 0) { MessageBox.Show("Proszę zaznacz ucznia, którego dane chcesz edytować."); return; // return kończy funkcję bez wykonywania reszty kodu } var addEditStudent = new AddEditStudent(Convert.ToInt32(dgvDiary.SelectedRows[0].Cells[0].Value)); // pobiera wartość ID studenta addEditStudent.ShowDialog(); RefreshDataGridView(); }