private void btnUpdateCategory_Click(object sender, EventArgs e) { int id = (int)dtgvCategory.CurrentRow.Cells["id"].Value; string idTextBox = txtCategoryID.Text.Trim(); string nameUpdate = txtCategoryName.Text.Trim(); string message = busCate.updateCate(id, idTextBox, nameUpdate); MessageBox.Show(message); if (message.Equals("Cập nhật danh mục thành công")) { loadListCate(); bindingsCate(); LoadCategory(); loadListFood(); bindingsFood(); } }