- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在 Delphi Prism 中,我需要在单个语句中将 ListBox 中的对象集合分配给 ArrayList。到目前为止我还没有找到任何解决方案。
在 Delphi 中,我就是这样做的。
theUser.Groups.Assign(ListBox1.Items);
Groups 在 Delphi 中是 TList,在 Delphi Prism 中是 ArrayList。当我尝试在 delphi prism 中执行相同操作时,它给出了以下错误。
“Groups.TGroupList”不包含表达式“theUser.groups.Assign”中“Assign”的定义
如果 ArrayList 没有接受对象集合的方法,那么我将必须循环遍历 ListBox 项中的每个对象并将其添加到 ArrayList。
你会怎么做?
提前致谢。
最佳答案
未经测试:
theUser.Groups.AddRange(ListBox1.Items)
ArrayList.AddRange
接受 ListBox.ObjectCollection
实现的 ICollection
接口(interface)。
另请参阅:
http://msdn.microsoft.com/en-us/library/system.windows.forms.listbox.objectcollection.aspx
http://msdn.microsoft.com/en-us/library/system.collections.arraylist.addrange(VS.71).aspx
关于delphi - 如何在一条语句中将 ListBox 中的对象分配给 ArrayList?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7389493/
我是一名优秀的程序员,十分优秀!