这是我的keydown代码:
If e.KeyCode = Keys.Enter Then
'find the item to be selected
lvBranch.FindItemWithText(txtFind.Text, True, 0, False).Selected = True
End If
当我按 enter 时,它不起作用,但是当我按 enter 进行 msgbox 之类的测试时,它起作用了。该代码用于在列表视图中选择与 txtFind 的值匹配的记录。
先感谢您