Hi all,
I want to know what is the difference between 2 controls in DevExpress. Those are LookupEdit and ComboBoxEdit.
Thanks in advance.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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?