private void btnShowCTPYC_ItemClick(object sender, DevExpress.XtraBars.ItemClickEventArgs e) { if (string.IsNullOrEmpty(StaticValue.MaPhieuYC)) { MessageBox.Show("Vui lòng chọn phiếu yêu cầu để có thể thực hiện được chức năng này!", CommonConstant.MESSAGE_WARNING, MessageBoxButtons.OK, MessageBoxIcon.Warning); return; } //show Cursor.Current = Cursors.WaitCursor; customersNavigationPage.Controls.Clear(); NhapXuat.frmChiTietPYC frm1 = new NhapXuat.frmChiTietPYC(); customersNavigationPage.Controls.Add(frm1); navigationFrame.SelectedPageIndex = 1; navBarControl.ActiveGroup = customersNavBarGroup; Cursor.Current = Cursors.Default; }
private void btnShowPhieuYC_ItemClick(object sender, DevExpress.XtraBars.ItemClickEventArgs e) { employeesNavigationPage.Controls.Clear(); NhapXuat.frmPhieuYC frm = new NhapXuat.frmPhieuYC(); frm.btnDetails.Click += delegate { Cursor.Current = Cursors.WaitCursor; customersNavigationPage.Controls.Clear(); NhapXuat.frmChiTietPYC frm1 = new NhapXuat.frmChiTietPYC(); customersNavigationPage.Controls.Add(frm1); navigationFrame.SelectedPageIndex = 1; navBarControl.ActiveGroup = customersNavBarGroup; Cursor.Current = Cursors.Default; }; employeesNavigationPage.Controls.Add(frm); }