How to get the selected value ultraComboEditor

According to the general idea is to determine .net drop-down list drop-down list, which item is selected, the selected value for that item to get, but this idea did not seem in ultraComboEditor. Because it can not determine to which Item is selected.

But it provides another way to solve this problem.

string text = this.ultraComboEditorXXX.Text --- obtain the value shown in the ultraComboEditorXXX

string value = this.ultraComboEditorXXX.Value.Tostring () --- obtain the true value of a corresponding item in the ultraComboEditorXXX

Reproduced in: https: //www.cnblogs.com/softwareking/archive/2011/04/03/2004202.html

Guess you like

Origin blog.csdn.net/weixin_34216107/article/details/93766393