gpt4 book ai didi

java - 如何在 SWT ToolItem 中左对齐文本?

转载 作者:搜寻专家 更新时间:2023-11-01 03:54:16 27 4
gpt4 key购买 nike

我正在升级 RCP 应用程序以使用 Eclipse 4.2.1。我遇到的问题之一是工具栏中文本的对齐方式发生了变化。

我可以使用以下摘自标准 SWT snippet 的代码片段重现该问题.它只是创建一个带有 3 个 ToolItem 的垂直工具栏。每个项目都有一个图像和一些文本。

当我在 Eclipse 3.7.2 中运行这个片段时,每个 ToolItem 的文本都是左对齐的。在 Eclipse 4.2.1 中,它是居中对齐的。我希望文本保持左对齐。将样式设置为 SWT.LEFT 没有帮助。有什么建议吗?

import org.eclipse.swt.SWT;
import org.eclipse.swt.graphics.Color;
import org.eclipse.swt.graphics.GC;
import org.eclipse.swt.graphics.Image;
import org.eclipse.swt.graphics.Rectangle;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.swt.widgets.ToolBar;
import org.eclipse.swt.widgets.ToolItem;

public class Snippet36 {

public static void main (final String [] args) {
Display display = new Display();
Image image = new Image (display, 16, 16);
Color color = display.getSystemColor (SWT.COLOR_RED);
GC gc = new GC (image);
gc.setBackground (color);
gc.fillRectangle (image.getBounds ());
gc.dispose ();
Shell shell = new Shell (display);
ToolBar toolBar = new ToolBar (shell, SWT.FLAT | SWT.BORDER | SWT.VERTICAL | SWT.RIGHT);
Rectangle clientArea = shell.getClientArea ();
toolBar.setLocation (clientArea.x, clientArea.y);
String[] labels = new String[] {"Short", "Quite a bit longer", "OK"};
for (int i=0; i<3; i++) {
ToolItem item = new ToolItem (toolBar, SWT.PUSH);
item.setText(labels[i]);
item.setImage (image);
}
toolBar.pack ();
shell.open ();
while (!shell.isDisposed()) {
if (!display.readAndDispatch ()) {
display.sleep ();
}
}
image.dispose ();
display.dispose ();
}
}

最佳答案

刚刚用 Eclipse 4.2.1 试了一下,这是我得到的:

enter image description here

一切正常。

您使用的是哪个版本的 SWT?

关于java - 如何在 SWT ToolItem 中左对齐文本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13514603/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com