TaZz
TaZz

Reputation: 672

devexpress CheckedComboBoxEdit.DataBindings connect to xpcollection

I'm trying to connect xpcollection, below is xpcollection code I'm using:

Private Agent As New XPCollection(Of clAgent)(UOW)

I would like data from this collection to be visible in CheckedComboBoxEdit, I think it should be DataBindings, however it's not working, or I don't know how to work it out. Any ideas of how to add results from xpcollection to CheckedComboBoxEdit?

Thanks

Patryk

Upvotes: 2

Views: 572

Answers (1)

Gosha_Fighten
Gosha_Fighten

Reputation: 3858

You need to use the RepositoryItemCheckedComboBoxEdit.DataSource property to assign a data source to CheckedComboBoxEdit.

Private Agent As New XPCollection(Of clAgent)(UOW)
CheckedComboBoxEdit.Properties.DataSource = Agent

Upvotes: 3

Related Questions