BCB6 TListBox(如何获取多选项的值)
如何获取 TListBox 中的选定项目并将项目添加到第二个 TListBox 中,我使用 Borland C++ Builder 6。
How can I get the selected items in TListBox and add the items in the second TListBox, Im using Borland C++ Builder 6.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
正如 David 中所说他的答案,您需要使用 选定的 属性。
这是我过去在几个项目中使用过的一个简单函数。
As David said in his answer, you need to use the Selected property.
Here is a simple function I have used in several projects in the past.
您需要迭代 Selected[] 属性。如果 Selected[i]==true 则选择 Items[i]。
You need to iterate over the Selected[] property. if Selected[i]==true then Items[i] is selected.