I am developing on a PC, my application must run on a series of laptops. The user interface looks fine on my PC @ 1680x1050; however, the laptops are using 1366x768 and 1280x800, etc...
The issue is that the NCombo Box Items are being truncated vertically (see attached). I have tried adjusting the ListProperties.ItemHeight; but that makes no apparent difference. What else should I try?
Thanks
Hello Miles,
ItemHeight property sets the height of the items in the dropped down list.
When NComboBox is editable (as is shown in the image) the edit box hosts NComboBoxEdit control which base class is TextBox.
You can try to increase the height of this hosted control as follows:
Rectangle
r.Height += someValue;
{
edit.Bounds = r;
}
Please, let me know if the problem persist.
Regards,
Angel.