我有一个列表视图控件,用户可以添加项目,但我需要能够告诉他们选择了哪个项目。
答案 0 :(得分:0)
SelectedItems属性返回已选择列表视图项的列表。如果您只希望它们能够选择单个项目,则可以将MultiSelect属性设置为false。
答案 1 :(得分:0)
使用SelectedIndices
属性。 SelectedItems
属性将返回列表中的实际对象(您可能必须执行此操作)。
编辑:示例(对不起,我的VB可能生锈了):
If myListView.SelectedIndices.Count > 0 Then
int selectedIndex = myListView.SelectedIndices[0];
' Do other stuff
End If