如何通过点击datagridview的一行,获得这一行中的数据?c#高手指教

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何通过点击datagridview的一行,获得这一行中的数据?c#高手指教相关的知识,希望对你有一定的参考价值。

点击这行选中,可以使用编辑列。然后在方法中可以写修改等等。
比如
protected void GridView1_RowUpdating(object sender, GridViewUpdateEventArgs e)

GridViewRow row = GridView1.Rows[e.RowIndex];
int ID = int.Parse(((TextBox)row.Cells[0].Controls[0]).Text);



---------
上面的ID就是选中行的第一列的值。
参考技术A 一分没有啊?
可以通过设置标识符,获得当前行的标识符的值来获取行的其他值

c# datagridview 如何选中行,以及怎么获取选中行的数据

有一个datagridview控件
默认的是点击以后只选择了一个单元格
怎么样可以改成点击(左击或者右击)选择一行啊
还有一个contextMenuStrip控件,想实现获取选择的数据的功能
怎么样获取所选择行的数据?
网上搜了一些文章,感觉都是讲的太多,不是我要的

C#如何获取DataGridView对象单元格的内容,这里介绍下获取方法。

1、首先需要在事件列表中找到DataGridView对象的CellClick事件。

2、然后在此事件中,会有DataGridCiewCellEventArgs事件变量e。

3、此时便能利用DataGridCiewCellEventArgs事件变量e的RowIndex属性获得行索引,但是我们需要加1。

4、并且还能通过CurrentCellAddress属性组的X和Y坐标,也是能够获得行列索引。

参考技术A

可以设置DataGridView的SelectionMode属性为FullRowSelect 实现左键点击选取整行,右击的话就需要在鼠标点击事件里面实现了
如下:
private void dataGridView1_CellMouseClick(object sender, DataGridViewCellMouseEventArgs e)

if (e.ColumnIndex < 0 || e.RowIndex < 0) return;
if (e.Button == System.Windows.Forms.MouseButtons.Right)

dataGridView1.Rows[e.RowIndex].Cells[e.ColumnIndex].Selected = true;


右键菜单自己设置关联上dgv就可以,右键菜单的按钮点击事件内容如下:
if (dataGridView1.CurrentRow == null) return;
DataGridViewRow dgvr = dataGridView1.CurrentRow;
string val = dgvr.Cells["???"].Value.ToString();你自己要获取的数据

扩展内容

c#怎么获取datagridview选中多行的每一行中的某一列的值

var datagridview = new DataGridView();
var dataselect = datagridview.SelectedRows;
var label = new Label();
foreach (DataGridViewRow row in dataselect)

label.Text += row.Cells[1].Value + "\\n";

c# datagridview 如何选中行-搜狗百科

参考技术B 可以设置DataGridView的SelectionMode属性为FullRowSelect 实现左键点击选取整行,右击的话就需要在鼠标点击事件里面实现了
如下:
private void dataGridView1_CellMouseClick(object sender, DataGridViewCellMouseEventArgs e)

if (e.ColumnIndex < 0 || e.RowIndex < 0) return;
if (e.Button == System.Windows.Forms.MouseButtons.Right)

dataGridView1.Rows[e.RowIndex].Cells[e.ColumnIndex].Selected = true;


右键菜单自己设置关联上dgv就可以,右键菜单的按钮点击事件内容如下:
if (dataGridView1.CurrentRow == null) return;
DataGridViewRow dgvr = dataGridView1.CurrentRow;
string val = dgvr.Cells["???"].Value.ToString();你自己要获取的数据本回答被提问者和网友采纳
参考技术C 可以设置DataGridView的SelectionMode属性为FullRowSelect 实现左键点击选取整行,右击的话就需要在鼠标点击事件里面实现了
如下:
private void dataGridView1_CellMouseClick(object sender, DataGridViewCellMouseEventArgs e)

if (e.ColumnIndex < 0 || e.RowIndex < 0) return;
if (e.Button == System.Windows.Forms.MouseButtons.Right)

dataGridView1.Rows[e.RowIndex].Cells[e.ColumnIndex].Selected = true;


右键菜单自己设置关联上dgv就可以,右键菜单的按钮点击事件内容如下:
if (dataGridView1.CurrentRow == null) return;
DataGridViewRow dgvr = dataGridView1.CurrentRow;
string val = dgvr.Cells["???"].Value.ToString();你自己要获取的数据
参考技术D

赞同一楼的做法.选定FullRowSelect.

以上是关于如何通过点击datagridview的一行,获得这一行中的数据?c#高手指教的主要内容,如果未能解决你的问题,请参考以下文章

如何获得DataGridView中某一列中全部的值?

如何向datagridview添加行

C# winform中,怎样dataGridView1选中一行access数据,然后再textbox中显示

C#winform datagridivew 中 知道行号 如何获得一行全部数据

gridview控件,怎么点击选中,获取行的数据?

如何在datagridview第一行新增一行