How to get selected value from DevExpress LookupEdit?

That's it, I use DevExpress LookupEdit in a C # .NET project, also set the Display Member and Value property for LookupEdit. How to get the selected value from DevExpress LookupEdit.

thanks

+7
c # winforms devexpress repositorylookupedit
source share
1 answer

You should use the lookupEdit.EditValue property. If you need to get the DisplayText editor, use its Text property.

+12
source share

All Articles