TcxLookupComboBox
1、绑定数据源显示
cxLookupComboBox1.Properties.DropDownAutoSize:=true; //设置下拉列表为自适应宽度 cxLookupComboBox1.Properties.ListSource:=dslist; //设置数据源 datasource cxLookupComboBox1.Properties.ListFieldNames:='pdate;edate'; //设置下拉列表需要显示的列 该列是数据源的某些列 cxLookupComboBox1.Properties.KeyFieldNames:='tb_ticketsale_id'; //设置返回的字段名,是数据源的某个列,用EditValue取值 cxLookupComboBox1.Properties.ListFieldIndex:=0; //设置返回输入框中的值,即ListFieldNames中的显示列中获取那个来输入到输入框中,用EditText取值