有没有办法在单行中添加 SWT 标签中的文本和图像。一旦我添加图像,文本就会消失。
问问题
15000 次
3 回答
17
不,您不能在其中同时包含图像和文本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:
于 2012-05-29T09:08:24.747 回答
0
按钮单击以打开文件对话框并选择要在特定标签上显示文本的任何图像。
import org.eclipse.swt.custom.CLabel
支持对齐文本和/或图像以及不同边框样式的标签。
我希望这个答案是有用的。
请访问此页面: 如何加载图像以在 RCP 中查看?
于 2017-02-02T08:41:16.437 回答
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(...)
于 2017-02-07T17:17:02.247 回答