我在SWT复合中有一个组。我想设置一个图像,而不是文本。我怎么能实现这个?我没有找到任何直接的方法来设置图像。但是有任何解决方法对此?
以下是摘录
final Group defineInteractionGroup = new Group(sashForm, SWT.NONE);
Image image = new Image(Display.getCurrent(), "C:/myIcon.png");
GridData interactionsGroupGridData = new GridData(SWT.FILL, SWT.FILL, true, true);
interactionsGroupGridData.heightHint = 0;
defineInteractionGroup.setLayoutData(interactionsGroupGridData);
defineInteractionGroup.setLayout(new GridLayout(1, false));
defineInteractionGroup
.setText(ResourceAssistant.getString(InteractionExpandedComposite.class, "defineInteraction"));