在 C# 中将 ComboBox 项复制到 StringCollection
如何将 comboBox
中的项目集合复制到 C# 应用程序中的 StringCollection
?我只对按各自顺序捕获每个项目的字符串文本感兴趣。我正在尝试创建一个在会话之间保存的 MRU 文件列表,因此我想将 comboBox.Items
复制到 StringCollection Properties.Settings.Default.MostRecentlyUsedHexFiles
。如果您有任何想法或建议,我们将不胜感激。谢谢。
How can I copy a collection of items in a comboBox
to a StringCollection
in my C# application? I'm only interested in capturing the string text for each item in their respective order. I am trying to make a MRU file list that is saved between sessions, so I would like to copy comboBox.Items
to StringCollection Properties.Settings.Default.MostRecentlyUsedHexFiles
. Any thoughts or suggestions you may have would be appreciated. Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该能够遍历combobox.items并简单地使用stringcollection.Add()将字符串添加到集合中。
tostring 方法将按照此处:
所以像这样:
You should be able to loop over the combobox.items and simply use stringcollection.Add() to add the string to the collection.
The tostring method will perform as described here:
So something like: