private void btnCapNhat_Click(object sender, EventArgs e) { Session s = XpoDefault.Session; s.Save(xpcEmployee); FormEmployeeList f = this.Tag as FormEmployeeList; f.RefreshData(); XtraMessageBox.Show("Cập nhật thành công", "Đã lưu"); }
private void btnThem_Click(object sender, EventArgs e) { Session s = XpoDefault.Session; try { s.Save(xpcEmployee); } catch { XtraMessageBox.Show("Mã Nhân Viên Đã Tồn Tại", "Thông Báo"); return; } FormEmployeeList f = this.Tag as FormEmployeeList; f.RefreshData(); XtraMessageBox.Show("Thêm mới thành công", "Đã lưu"); this.BindingContext[xpcEmployee].AddNew(); }