I have a WinComboBox on a cell of a grid, and I try to change its height:
WinComboBox combo = new WinComboBox();
combo.Items.Add(new ComBoxItem(new object[1] {“First”}));
combo.TextBoxArea.Height = 13;
Is this the right way to do? It seems not working for me. The height of the combo box text area never changed. (The value remains 18 no matter what value I set to.) Please help. Thanks!
Imported from legacy forums. Posted by Sop (had 688 views)