0

我想在运行时检查/勾选使用 DataGridViewCheckBoxColumn 创建的列。

这是我的代码片段;

Dim checkCol As DataGridViewCheckBoxColumn = New DataGridViewCheckBoxColumn()
DataGridView1.Columns.Add(checkCol)

添加此列后,我想在 VB 应用程序启动时选中/勾选其中一些复选框。

我怎么做?我必须使用 Checkbox 类中的一些方法吗?谢谢

4

1 回答 1

1

ACheckBox接受两个值:(True选中)或False(未选中)。您可以DataGridView通过执行以下操作在运行时设置/获取任何单元格的值:

DataGridView1(0, 0).Value = True 'Checking the CheckBox in the first row/first column 
Dim isChecked As Boolean = DirectCast(DataGridView1(0, 2).Value, Boolean) 'Getting the check status of the third row/first column.
于 2013-09-02T10:32:06.863 回答