private void btnDetailQuery_ItemClick(object sender, DevExpress.XtraBars.ItemClickEventArgs e) { if (selection.SelectedCount == 0) { const string message = "没有勾选主单进行的详单查询时间会比较久(3分钟左右),继续么?"; const string caption = "详单查询?"; var result = MessageBox.Show(message, caption, MessageBoxButtons.YesNo, MessageBoxIcon.Question); if (result == DialogResult.Yes) { FrmSupplierAccountDetail FrmSAD = new FrmSupplierAccountDetail(); FrmSAD.Show(); FrmSAD.Activate(); } } else { string strZTBMGYSSPTZID = null; for (int i = 0; i < selection.SelectedCount; ++i) { int RowIndex = selection.GetSelectedRowIndex(i); int RowHandle = gridView1.GetRowHandle(RowIndex); string strTemp = gridView1.GetRowCellDisplayText(RowHandle, colZTBMGYSSPTZID); strZTBMGYSSPTZID += "[ZTBMGYSSPTZID] = \'" + strTemp + "\' Or "; } int index = strZTBMGYSSPTZID.LastIndexOf("'"); strZTBMGYSSPTZID = strZTBMGYSSPTZID.Substring(0, index + 1).Trim(); FrmSupplierAccountDetail FrmSAD = new FrmSupplierAccountDetail(strZTBMGYSSPTZID); FrmSAD.Show(); FrmSAD.Activate(); } }
private void gridView1_DoubleClick(object sender, EventArgs e) { FormCollection fc = Application.OpenForms; GridView view = (GridView)sender; GridHitInfo hitInfo = view.CalcHitInfo(view.GridControl.PointToClient(Control.MousePosition)); if (hitInfo.HitTest == GridHitTest.RowCell) { if ((hitInfo.Column != null) && (hitInfo.Column == colBMMC)) { string strTemp = view.GetRowCellDisplayText(hitInfo.RowHandle, colZTBMGYSSPTZID); string strZTBMGYSSPTZID = "[ZTBMGYSSPTZID] = \'" + strTemp + "\'"; if (fc["FrmSupplierAccountDetail"] != null) { fc["FrmSupplierAccountDetail"].Close(); } FrmSupplierAccountDetail FrmSAD = new FrmSupplierAccountDetail(strZTBMGYSSPTZID); FrmSAD.Show(); FrmSAD.Activate(); } } }