我正在尝试创建一个多行按钮,但文本被切断了。
Button button = new Button( containerButton, SWT.PUSH );
button.setText( "Hello\nWorld" );
是否可以调整按钮的高度? 我发现的唯一的东西是setSize(宽度,高度),但那不起作用。
谢谢! 托比
答案 0 :(得分:0)
尝试为按钮提供布局数据,例如一个GridData。在这里你可以设置例如heightHint。这应该工作。
读一篇好文章可能是: http://www.eclipse.org/articles/article.php?file=Article-Understanding-Layouts/index.html