如何使用 C# 获取选中列表框中新选中项目的文本
我正在使用 ItemCheckEventArgs,从中可以获取索引值,但从该值我不确定如何查找已检查内容的文本内容。
I'm using the ItemCheckEventArgs and from which I can get an index value, but from this value I'm not sure how to look up what the text is of whatever was checked.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
在 ItemCheck 事件处理程序中使用 ItemCheckEventArgs e 您可以检索相应的对象
In ItemCheck event handler using ItemCheckEventArgs e you can retrive corresponding object
这里有一些简单的代码可以解决这个问题:
Here's some bare-bones code that should do the trick:
CheckedListBox
类有一个CheckedItems
属性。The
CheckedListBox
class has aCheckedItems
property.在
SelectedIndexChanged
事件中,输入以下代码Inside the
SelectedIndexChanged
event, put the following code