DataGridView.CurrentCellAddress 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取当前处于活动状态的单元格的行索引和列索引。
public:
property System::Drawing::Point CurrentCellAddress { System::Drawing::Point get(); };
[System.ComponentModel.Browsable(false)]
public System.Drawing.Point CurrentCellAddress { get; }
[<System.ComponentModel.Browsable(false)>]
member this.CurrentCellAddress : System.Drawing.Point
Public ReadOnly Property CurrentCellAddress As Point
属性值
一个 Point,表示当前处于活动状态的单元格的行索引和列索引。
- 属性
示例
下面的代码示例演示如何在行画方案中使用 CurrentCellAddress 属性。 在示例中,此属性用于存储当前单元格的行索引。 当用户将当前单元格更改为其他行时,该行将强制重新绘制自身。
此代码是如何:自定义 DataGridView 控件 Windows 窗体中行的外观中提供的更大示例的一部分。
// Forces the row to repaint itself when the user changes the
// current cell. This is necessary to refresh the focus rectangle.
void dataGridView1_CurrentCellChanged(object sender, EventArgs e)
{
if (oldRowIndex != -1)
{
this.dataGridView1.InvalidateRow(oldRowIndex);
}
oldRowIndex = this.dataGridView1.CurrentCellAddress.Y;
}
' Forces the row to repaint itself when the user changes the
' current cell. This is necessary to refresh the focus rectangle.
Sub dataGridView1_CurrentCellChanged(ByVal sender As Object, _
ByVal e As EventArgs) Handles dataGridView1.CurrentCellChanged
If oldRowIndex <> -1 Then
Me.dataGridView1.InvalidateRow(oldRowIndex)
End If
oldRowIndex = Me.dataGridView1.CurrentCellAddress.Y
End Sub
注解
使用此属性可以确定当前单元格的行和列,而无需直接访问单元格。 这对于避免共享行的取消共享非常有用。 有关行共享的详细信息,请参阅缩放 Windows 窗体 DataGridView 控件的最佳做法。