dataGridView 选中单元格如何获取该行的某个值。
比如我选中第一行的【15672】这个地方,点击右键打开新窗口,在新窗口中获取第一行的【40005】这个值,该怎么弄呢??在线等,不明白的地方留言。补充一下,我选择第一行的...
比如我选中第一行的【15672】这个地方,点击右键打开新窗口,在新窗口中获取第一行的【40005】这个值,该怎么弄呢??在线等,不明白的地方留言。
补充一下,我选择第一行的IRegisterID这个列,或者其他列,如何获取第一行的IDiagnoseCode这个列的值。 展开
补充一下,我选择第一行的IRegisterID这个列,或者其他列,如何获取第一行的IDiagnoseCode这个列的值。 展开
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();
}
}
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();
}
}
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询