此示例设置对现有 DataGrid 控件的选定单元格的引用。
示例
Dim selectedCell As System.Windows.Forms.DataGridCell selectedCell = Me.DataGrid1.CurrentCell
编译代码
此示例需要:
- 对 System.Windows.Forms 命名空间的引用。
可靠编程
如果 DataGrid 未绑定到某一数据源或者未选定任何单元格,则选定的单元格就是行 0 和列 0 中的单元格。
此示例设置对现有 DataGrid 控件的选定单元格的引用。
Dim selectedCell As System.Windows.Forms.DataGridCell selectedCell = Me.DataGrid1.CurrentCell
此示例需要:
如果 DataGrid 未绑定到某一数据源或者未选定任何单元格,则选定的单元格就是行 0 和列 0 中的单元格。