Mohamed Benattou
Mohamed Benattou

Reputation: 105

Didn't find cxLookUpComboBox.Properties.ItemHeight?

I want to modify the default height of items in DevExpress VCL cxLookUpComboBox, like we do with cxComboBox items (cxComboBox.Properties.ItemHeight).

Upvotes: 0

Views: 496

Answers (1)

GolezTrol
GolezTrol

Reputation: 116140

(almost literally) from the DevExpress Q&A

The TcxComboBox and TcxLookupComboBox controls are very different. TcxComboBox displays a simple List Box control as its dropdown control, but TcxLookupComboBox contains a grid control with multiple columns.

If you wish to have more control over the Lookup Combobox appearance, consider using its advanced version - TcxExtLookupComboBox. This control displays a regular TcxGrid's data-aware view as its lookup list, so you can use properties like OptionsView.DataRowHeight to set up required dimensions.

Upvotes: 3

Related Questions