private void dataGridView1_CellClick(object sender, DataGridViewCellEventArgs e) { Portion a = (Portion)dataGridView1.CurrentRow.DataBoundItem; var daily = new ShowTrip(a, GetClient, GetVietTravel); if (daily.ShowDialog() == DialogResult.OK) { portionBindingSource.ResetBindings(false); } }
private void TripClientGridView_CellClick(object sender, DataGridViewCellEventArgs e) { Portion a = (Portion)TripClientGridView.CurrentRow.DataBoundItem; var chitiet = new ShowTrip(a, GetClient, GetVietTravel); if (chitiet.ShowDialog() == DialogResult.OK) { portionBindingSource.ResetBindings(false); } KhoiPhucHangDat(); KhoiPhucDaiLy(); }