dataGridView 选中单元格如何获取该行的某个值。

2024-12-03 09:33:28
推荐回答(2个)
回答1:

给dataGridView的IRegisterID增加模板列然后 放一个hyperlink, 在dataGridView绑定数据的时候给hyperlink的链接增加参数,该参数的值就是IDiagnoseCode的值

e.item.cells(4).text

回答2:

// dgvFeeManagePay为dataGridView,_selectedRowIndex当前行行号
DataGridViewRow currentRow = this.dgvFeeManagePay.Rows[this._selectedRowIndex];
if (currentRow != null)
{
// 实体类
_feeManagePay = new FeeManagePay();
if (!string.IsNullorEmpty(currentRow.Cells["PayID"].Value + ""))
{
// PaIDiagnoseCode
_ feeManagePay.PaIDiagnoseCode = currentRow.Cells["PayID"].Value.ToString();
}
}