private void sửaBoPhanToolStrip_Click(object sender, EventArgs e) { TblBoPhan data = new TblBoPhan(); Add.AddBoPhan uc = new Add.AddBoPhan(null, "Cập nhật bộ phận", this.dsbp); uc.ShowDialog(); }
private void dataGridView1_CellContentClick(object sender, DataGridViewCellEventArgs e) { var senderGrid = (DataGridView)sender; if (senderGrid.Columns[3] is DataGridViewImageButtonSaveColumn && e.RowIndex >= 0 && senderGrid.Columns[4] is DataGridViewImageButtonDeleteColumn) { switch (e.ColumnIndex) { case 3: TblBoPhan data = new TblBoPhan(); DataGridViewRow row = dataGridView1.Rows[e.RowIndex]; data.MaBophan = row.Cells[0].Value.ToString(); data.TenBoPhan = row.Cells[1].Value.ToString(); data.GhiChu = row.Cells[2].Value.ToString(); Add.AddBoPhan uc = new Add.AddBoPhan(data, "Cập nhật bộ phận", this); uc.ShowDialog(); break; case 4: TblBoPhan data2 = new TblBoPhan(); DataGridViewRow row2 = dataGridView1.Rows[e.RowIndex]; data2.MaBophan = row2.Cells[0].Value.ToString(); data2.TenBoPhan = row2.Cells[1].Value.ToString(); data2.GhiChu = row2.Cells[2].Value.ToString(); Delete.DeleteBoPhan uc2 = new Delete.DeleteBoPhan("Bộ phận này", data2, this); uc2.ShowDialog(); break; } } }
private void thêmBoPhanToolStrip_Click(object sender, EventArgs e) { Add.AddBoPhan uc = new Add.AddBoPhan(null, "Thêm mới bộ phận", this.dsbp); uc.ShowDialog(); }