标签:ntc string selection str val tostring mode GridView task
1、选中整行的方法
this.dgvPm_Tasks.SelectionMode = DataGridViewSelectionMode.FullRowSelect;
2、选中某一行的方法
rowIndex = this.dgvPm_Tasks.CurrentCell.RowIndex;
3、选中某一个元素的方法
string pmNo = dgvPm_Tasks.Rows[rowIndex].Cells["pm_no"].Value.ToString();
string lineNo = dgvPm_Tasks["line_no", rowIndex].Value.ToString();
string lineNo=dgvPm_Tasks[1,rowIndex].Value.ToString();
标签:ntc string selection str val tostring mode GridView task
原文地址:http://www.cnblogs.com/fdys/p/3527001.html