I have 2-column dropdown in WinCombo. One is a friendly description and the other is a hidden associated value. Insofar as there is only one visible column, I would like to hide the Header in the dropdown but don't see any property for doing that. Is there some way to do this?
Yes.Use the ColHeadersVisible property on the band. Something like:
combo.DisplayLayout.Bands[0].ColHeadersVisible = false;