data

Posted 纡ゾ少︶ㄣ

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了data相关的知识,希望对你有一定的参考价值。

for (int i = 0; i < this.dataGridView1.SelectedRows.Count; i++)//遍历所有选中的行
{
   this.dataGridView1.SelectedRows[i].Cells[0].EditedFormattedValue.ToString();
}

datagridview.CurrentCell.RowIndex;是当前活动的单元格的行的索引
DataGridView1.CurrentRow.Index 获得包含当前单元格的行的索引 
datagridview.SelectedRows 是选中行的集合
datagridview.SelectedColumns 是选中列的集合
datagridview.SelectedCells 是选中单元格的集合

以上是关于data的主要内容,如果未能解决你的问题,请参考以下文章

peerconnection例子关闭窗口

如何比较 C++ 中的泛型结构?

SAS数学两个表之间的差异

vivado 中怎么将端口信号加入ila

排球计分程序重构(下篇)

线程设计之future模式