如何设置CheckedComboBoxEdit UI项目的某些复选框?这适用于DevExpress。因此,如果我有一个下拉的5个复选框,并且我希望在表单加载时只检查下拉列表中的两个复选框,那么C#代码会是什么样的?
答案 0 :(得分:1)
将数据加载到CheckedComboBoxEdit后,您需要执行以下操作:
checkedComboBoxEdit.Properties.Items[0].CheckState = CheckState.Checked;
checkedComboBoxEdit.Properties.Items[3].CheckState = CheckState.Checked;
这会将列表中的第1和第4项标记为已选中。
答案 1 :(得分:-1)
chccmbobox_username.Properties.SeparatorChar =“;”
Dim st As String =“”
对于每个模型作为TicketModel在结果
st += model.User_LongName & ";"
下一步
chccmbobox_username.SetEditValue(ST)