我想默认选择widget combo first选项,它处于只读模式。任何建议
答案 0 :(得分:1)
select
Combo
方法设置所选项目。
Combo combo = new Combo(parent, SWT.READ_ONLY | SWT.DROP_DOWN);
combo.setItems(... items array ....);
// Select first item
combo.select(0);
请注意,这不会生成选择更改事件。为此,您需要使用notifyListeners
电话:
Event event = new Event();
event.widget = combo;
event.display = combo.getDisplay();
event.type = SWT.Selection;
combo.notifyListeners(SWT.Selection, event);