已选中列表视图复选框 vb.net

listview checkbox selected vb.net

我有一个带有复选框的列表视图,但是当我单击列表视图项目上的复选框时,该项目没有被选中。我希望在单击列表视图上的复选框时选中列表视图项。

这会将所选项目设置为所选复选框所在的行:

Private Sub ListView1_ItemCheck(ByVal sender As Object, ByVal e As System.Windows.Forms.ItemCheckEventArgs) Handles ListView1.ItemCheck
     ListView1.Items(e.Index).Selected = True
End Sub