如何使用 C# 中的字符串从具有数据源集的列表框中删除项目
refferring to msdn link
how can I remove an item using string???
(I don't want to remove it by using selected index)
I want something like
USStates.Remove("Alabama","AL");
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您无法更改
Items
集合,但可以更改数据源(List 或 ArrayList)。首先,重写
USState
类型中的GetHashCode()
和Equals()
方法。现在,您可以删除一个元素,
You can't change
Items
collection but you can change the DataSource (List or ArrayList).First of all override
GetHashCode()
andEquals()
methods inUSState
type.Now, you can remove an element,
更新:我假设您添加了一个可以单击以删除项目的按钮。
PS:我以为你在我之前的回答中使用的是WPF。
Updated: I assume you add a button that you can click to remove an item.
PS: I thought you're using WPF in my previous answer.
首先,不要使用ArrayList,使用List。然后你可以根据类型 T 来删除,
First of all, don't use an ArrayList, use a List. Then you can remove based on whatever the type T is,