我在c#中有一个拆分容器控件。在右侧面板中有一个datagridview。我在datagridview外面的面板中有一个按钮。单击按钮时,我想获取datagridview的选定行值。怎么做?
答案 0 :(得分:0)
例如
dataGridView.SelectedRows[0].DataBoundItem
或
dataGridView.SelectedRows[0].Cells[x].Value
其中x是列索引
或
sensorDataGridView.CurrentCell.Value