devexpress CheckedComboBoxEdit.DataBindings 连接到 xpcollection
devexpress CheckedComboBoxEdit.DataBindings connect to xpcollection
我正在尝试连接 xpcollection,下面是我正在使用的 xpcollection 代码:
Private Agent As New XPCollection(Of clAgent)(UOW)
我希望此集合中的数据在 CheckedComboBoxEdit 中可见,我认为它应该是 DataBindings,但它不起作用,或者我不知道如何解决。关于如何将 xpcollection 的结果添加到 CheckedComboBoxEdit 的任何想法?
谢谢
帕特里克
您需要使用 RepositoryItemCheckedComboBoxEdit.DataSource 属性 为 CheckedComboBoxEdit 分配数据源。
Private Agent As New XPCollection(Of clAgent)(UOW)
CheckedComboBoxEdit.Properties.DataSource = Agent
我正在尝试连接 xpcollection,下面是我正在使用的 xpcollection 代码:
Private Agent As New XPCollection(Of clAgent)(UOW)
我希望此集合中的数据在 CheckedComboBoxEdit 中可见,我认为它应该是 DataBindings,但它不起作用,或者我不知道如何解决。关于如何将 xpcollection 的结果添加到 CheckedComboBoxEdit 的任何想法?
谢谢
帕特里克
您需要使用 RepositoryItemCheckedComboBoxEdit.DataSource 属性 为 CheckedComboBoxEdit 分配数据源。
Private Agent As New XPCollection(Of clAgent)(UOW)
CheckedComboBoxEdit.Properties.DataSource = Agent