- 积分
- 225
- 在线时间
- 134 小时
- 主题
- 23
- 注册时间
- 2013-6-9
- 帖子
- 71
- 最后登录
- 2023-2-9
- 帖子
- 71
- 软币
- 1999
- 在线时间
- 134 小时
- 注册时间
- 2013-6-9
|
楼主 |
发表于 2013-8-4 00:54:05
|
显示全部楼层
- private void CusView_MouseDown(object sender, MouseEventArgs e)
- {
- if (e.Button == MouseButtons.Left && e.Clicks == 2)
- {
- DevExpress.XtraGrid.Views.Grid.ViewInfo.GridHitInfo hInfo = CusView.CalcHitInfo(new Point(e.X, e.Y));
- if (e.Button == MouseButtons.Left && e.Clicks == 2)
- {
- //判断光标是否在行范围内
- if (hInfo.InRow)
- {
- //取得选定行信息
- s1 = FindCusView.GetRowCellValue(FindCusView.FocusedRowHandle, "编号").ToString();
- s2 = FindCusView.GetRowCellValue(FindCusView.FocusedRowHandle, "名称").ToString();
- s3 = FindCusView.GetRowCellValue(FindCusView.FocusedRowHandle, "电话").ToString();
- this.Close();
- }
- }
- }
- }
复制代码 |
|