垂直显示swt按钮上的文本

时间:2011-11-11 09:24:54

标签: text swt

我正在尝试在按钮上显示文字。我不想将其显示为“垂直”,而是将其显示为

V
e
r
t
i
c
a
l

非常感谢任何帮助。

2 个答案:

答案 0 :(得分:1)

您必须制作自己的小部件才能在SWT中实现它。 Here是您可以尝试的完整示例。希望它有所帮助。

here is the output of the program when clicked

答案 1 :(得分:0)

SWT按钮支持包装(自3.7起)。

Button button = new Button(parent, SWT.PUSH | SWT.WRAP);
button.setText("V\ne\nr\nt\ni\nc\na\nl");

但遗憾的是,这些线条将作为一个整体而不是单独居中,因此结果看起来并不是特别好。