DevExpress 中 LookupEdit 和 ComboBoxEdit 的区别
大家好, 我想知道 DevExpress 中的 2 个控件有什么区别。它们是 LookupEdit
和 ComboBoxEdit
。
提前致谢。
Hi all,
I want to know what is the difference between 2 controls in DevExpress. Those are LookupEdit
and ComboBoxEdit
.
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
LookupEdit 是一个编辑器,它从底层数据源获取其 DropdownWindow 的项目。即它要求您设置 ValueMember、DisplayMember 和 DataSource 属性。
ComboBoxEdit 从其 Items 集合中获取项目。
标准 WinForms 组合框是这两种编辑器的混合体,并且可以在两种模式下工作。
另外,这里有一篇有用的文章:
我可以将 XtraEditor 的 ComboBox 绑定到数据表吗?< /a>
The LookupEdit is an editor which obtains items for its DropdownWindow from the underlying DataSource. I.e. it required you to set the ValueMember, DisplayMember and DataSource properties.
ComboBoxEdit obtains items from its Items collection.
The standard WinForms comboBox is a mix of these two editors and can work in both modes.
Also, here is a useful article:
Can I bind the XtraEditor's ComboBox to a datatable?
这与OP问题无关,但解决了一个给我带来很多麻烦的类似问题。
请注意,与 winforms 组合框控件不同,DevExpress LookupEdit 不会自动同步货币管理器。
不过,您可以手动执行此操作:
http://www.devexpress.com/Support /Center/p/A2275.aspx
This is tangential to the OP question but addresses an similar issue that has caused me a lot of trouble.
Note that unlike the winforms combobox control, the DevExpress LookupEdit does NOT automatically synchronize the currency manager.
Although, you can do this manually:
http://www.devexpress.com/Support/Center/p/A2275.aspx