如何在 DevExpress 中设置选定的元素? CheckedComboBox编辑
我是 DevExpress 控件的新手。我有一个 DevExpress checkedComboBoxEdit
控件,它使用 Linq 从 SQL Server 中填充数据。填充 selectedComboBox 元素工作正常,但我不知道如何设置所选元素。
数据库表包含三个字段
- id(值成员)、
- 角色(显示成员)
- Applies(包含 0 表示未选中,1 表示选中)
我想选择基于复选框元素在“应用”字段中。我该怎么做?或者有没有更好的方法通过修改数据库表来做到这一点?或者是否有 CheckedComboBox 属性可以执行此操作?
谢谢
I'm a newbie for DevExpress controls. I have a DevExpress checkedComboBoxEdit
control that is populated by data from SQL Server using Linq. Populating the checkedComboBox elements worked fine but I couldn't figure out how to set the selected elements.
The DB table contains three fields
- id (Value Member),
- Role (Display Member)
- Applies (contains 0 for unselected and 1 for selected)
I want to select the checkbox elements based on the Applies field. How can I do this? Or is there a better way of doing this by modifying the database table? Or is there a CheckedComboBox property to do this?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您应该在DevExpress 在线文档中找到您需要的所有内容。尤其:
因此,在您的情况下,您应该将“Role”分配给
DisplayMember
属性,并将“Applies”分配给ValueMember
属性(而不是“id”)。You should find all you need in the DevExpress online doumentation. In particular:
So in your case, you should assign 'Role' to the
DisplayMember
property and 'Applies' to theValueMember
property (rather than 'id').取消选中 CheckedComboBoxEdit 中的所有项目
To Unchecked all items in CheckedComboBoxEdit