HI 如何在 DataGridView 中获取 CurrentCell 位置。我需要什么时候我的负载将加载上面在 datagridview 当前单元格上设置的每个组合框。并获得相同的尺寸。我怎样才能做到这一点?
问问题
2504 次
1 回答
3
您可以使用property的属性获取包含当前选定单元格的列的从零开始的索引:ColumnIndex
CurrentCell
if (myDataGridView.CurrentCell != null)
{
int columnIndex = myDataGridView.CurrentCell.ColumnIndex;
}
或者,您可以使用以下属性获取包含当前选定单元格的列对象本身:OwningColumn
if (myDataGridView.CurrentCell != null)
{
DataGridViewColumn columnObject = myDataGridView.CurrentCell.OwningColumn;
}
请注意,我仍然不完全确定这是否是您所要求的。我的表单没有列,所以我假设您的意思是DataGridView
. 而且您的回答仍然没有真正解释“位置”的确切含义,但这应该告诉您您需要了解的有关包含当前单元格的列的所有信息。
于 2010-11-28T12:33:11.317 回答