Eclipse Widget Combo选项上的自动选择

时间:2017-06-28 09:19:03

标签: eclipse widget swt

我想默认选择widget combo first选项,它处于只读模式。任何建议

1 个答案:

答案 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);