天天看点

Eclipse插件开发 swt ComboBoxCellEditor CCombo 下拉框高度

效果图:

Eclipse插件开发 swt ComboBoxCellEditor CCombo 下拉框高度

代码如下

核心思想:

CellEditor cellEditor = new ComboBoxCellEditor(table, items,SWT.READ_ONLY);

//拿到control,进行高度设置即可,如果直接使用的是CCombo下拉框,上面那行代码都不用要,就可以设置下来高度。

CCombo cc = (CCombo)cellEditor.getControl();

cc.setVisibleItemCount(items.length/2);

落雨 ae6623

qq 394263788

继续阅读