有没有办法在一行中添加SWT标签中的文本和图像。 一旦我添加图像,文字就会消失。
答案 0 :(得分:16)
不能在Label
中同时拥有图像和文本(除非您自定义绘制它)。否则使用org.eclipse.swt.custom.CLabel
:
<强> Code:
强>
import org.eclipse.swt.SWT;
import org.eclipse.swt.custom.CLabel;
import org.eclipse.swt.graphics.Image;
import org.eclipse.swt.layout.FillLayout;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Shell;
public class LabelTest {
public static void main(String[] args)
{
final Display display = new Display();
final Shell shell = new Shell(display);
shell.setLayout(new FillLayout());
Image image = new Image(display, "next.png");
CLabel label = new CLabel(shell, SWT.BORDER);
label.setImage(image);
label.setText("This is a CLabel !!");
shell.pack();
shell.open();
while (!shell.isDisposed()) {
if (!display.readAndDispatch())
display.sleep();
}
if(image != null)
{
image.dispose();
image = null;
}
display.dispose();
}
}
<强> Output:
强>
答案 1 :(得分:0)
按钮单击以打开FileDialog Box并选择要在特定标签上显示文本的任何图像。
import org.eclipse.swt.custom.CLabel
支持对齐文本和/或图像以及不同边框样式的标签。
我希望这个答案很有用。
答案 2 :(得分:0)
是的,使用具有正确布局的中间复合
Composite composite = new Composite(parent, SWT.NONE);
composite.setLayout(new RowLayout(SWT.HORIZONTAL));
Label imageLabel = new Label(composite, SWT.NONE);
mageLabel.setImage(...);
Label textLabel = new Label(composite, SWT.NONE);
textLabel.setText(...)