내 e4 rcp 응용 프로그램의 상태 표시 줄을 만들지 만 상태 표시 줄은 작습니다. 내 Appliication.e4xmi에서RCP E4 상태 표시 줄이 작음
가 구성된 다음과 같다 :
트림 창 -> TrimBars -> 윈도우 트림 (아래) -> 도구 모음 -> 도구 제어 (내 상태 표시 클래스에 링크)
링크 상태 표시 클래스 :
public class StatusBar {
private Label label;
@Inject
private IEventBroker eventBroker;
public static final String STATUSBAR = "statusbar";
@Inject
@Optional
public void getEvent(@UIEventTopic(STATUSBAR) String message) {
updateInterface(message);
}
@PostConstruct
public void createControls(Composite parent) {
label = new Label(parent, SWT.LEFT);
label.setBackground(parent.getBackground());
}
public void updateInterface(String message) {
try {
Display.getDefault().asyncExec(new Runnable() {
@Override
public void run() {
try {
label.setText(message);
} catch (Exception e) {
logger.error(e.fillInStackTrace());
}
}
});
} catch (Exception exception) {
logger.error(exception.fillInStackTrace());
}
}
너무 작습니까? 충분하지 않아? 얼마 안됐어? –
상태 표시 줄의 높이가 작습니다. – Darksmilie