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) { FrmClientAccountDetail FrmCAD = new FrmClientAccountDetail(); FrmCAD.Show(); FrmCAD.Activate(); } } else { string strZTBMKHSPTZID = null; for (int i = 0; i < selection.SelectedCount; ++i) { int RowIndex = selection.GetSelectedRowIndex(i); int RowHandle = gridView1.GetRowHandle(RowIndex); string strTemp = gridView1.GetRowCellDisplayText(RowHandle, colZTBMKHSPTZID); strZTBMKHSPTZID += "[ZTBMKHSPTZID] = \'" + strTemp + "\' Or "; } int index = strZTBMKHSPTZID.LastIndexOf("'"); strZTBMKHSPTZID = strZTBMKHSPTZID.Substring(0, index + 1).Trim(); FrmClientAccountDetail FrmCAD = new FrmClientAccountDetail(strZTBMKHSPTZID); FrmCAD.Show(); FrmCAD.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 == colYWBMMC)) { string strTemp = view.GetRowCellDisplayText(hitInfo.RowHandle, colZTBMKHSPTZID); string strZTBMKHSPTZID = "[ZTBMKHSPTZID] = \'" + strTemp + "\'"; if (fc["FrmClientAccountDetail"] != null) { fc["FrmClientAccountDetail"].Close(); } FrmClientAccountDetail FrmCAD = new FrmClientAccountDetail(strZTBMKHSPTZID); FrmCAD.Show(); FrmCAD.Activate(); } } }