ListBox:显示多个选定的项目?
当我在ListBox
中选择多个项目时,如何显示它们?任何帮助将不胜感激。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
当我在ListBox
中选择多个项目时,如何显示它们?任何帮助将不胜感激。
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
首先,您需要设置
属性为
ListBox
上的 SelectionModeSelectionMode.MultiSimple
或SelectionMode.MultiExtended
(以便您可以选择多个项目)。接下来,您需要为 ListBox 上的 >
集合将为您提供对所有选定对象的集合的访问。
SelectedIndexChanged
事件。在此事件处理程序中,访问ListBox
的 SelectedItems从那里,您可以循环访问集合,以您选择的任何方式显示对象。下面是一个示例事件处理程序,它在名为
textBox1
的TextBox
中显示所选项目:First, you need to set the
SelectionMode
property on yourListBox
to eitherSelectionMode.MultiSimple
orSelectionMode.MultiExtended
(so that you can select multiple items).Next, you need to add an event handler for the
SelectedIndexChanged
event on yourListBox
. Within this event handler, accessing theSelectedItems
collection of yourListBox
will provide you with access to a collection of all the selected objects.From there, you can iterate through the collection to display the objects in any manner you choose. Here's an example event handler that displays the selected items in a
TextBox
calledtextBox1
: