Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这是我的代码:
If e.KeyCode = Keys.Enter Then lvFabric.Items.Item(0).Text = txtFind.Text End If
上面的代码只是指定了应该在列表视图中添加文本的位置。
整个函数的流程是首先有一个文本框(txtFind),例如用户输入一个文本然后按回车,用户按回车后文本将被添加到列表视图中。用户会这样做 3 次,我想要的是如何在列表视图中自动添加文本而不指定索引。
尝试这个
If e.KeyCode = Keys.Enter Then lvFabric.Items.add(New ListViewItem(txtFind.Text)) End If