private void btXoa_Click(object sender, EventArgs e) { DialogResult traloi; traloi = MessageBox.Show("Bạn có muốn lưu xóa \n Vẫn có thể khôi phục trong phần Món cũ", "Trả lời", MessageBoxButtons.YesNo, MessageBoxIcon.Question); if (traloi == DialogResult.Yes) { string active = "No"; string tt; if (lbTrangThai.Text == "Hiện có") { tt = "Yes"; } else { tt = "No"; } cFood.UpdateFood(Convert.ToInt32(Id), lbTen.Text, Convert.ToInt32(lbGia.Text), tt, Convert.ToInt32(lbGiamGia.Text), active, lbLoai.Text); FQlyThucDon qlyThucDon = (FQlyThucDon)this.ParentForm; qlyThucDon.Reload(); } }
private void FSuaMonAn_FormClosed(object sender, FormClosedEventArgs e) { FQlyThucDon qlyThucDon = (FQlyThucDon)this.ParentForm; qlyThucDon.Reload(); }