gpt4 book ai didi

java - 布局问题 : autogrow label (SWT)

转载 作者:搜寻专家 更新时间:2023-10-31 19:50:30 25 4
gpt4 key购买 nike

我正在使用 GridLayout 尝试使标签自动增长而不隐藏其任何内容。这是一个简单的测试代码:每次按下按钮时,标签文本都会变大,但只有在水平调整窗口大小后,我才能获得正确的布局。有什么办法可以在不调整窗口大小的情况下解决这个问题吗?我想我已经尝试了所有属性,但我仍然无法正常工作,这让我抓狂!

这是我得到的

wrong layout

本应如此

right layout

import org.eclipse.swt.SWT;
import org.eclipse.swt.events.SelectionAdapter;
import org.eclipse.swt.events.SelectionEvent;
import org.eclipse.swt.layout.GridData;
import org.eclipse.swt.layout.GridLayout;
import org.eclipse.swt.widgets.Button;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Label;
import org.eclipse.swt.widgets.List;
import org.eclipse.swt.widgets.Shell;

public class UItest {

protected Shell shell;
private Label label;

public static void main(String[] args) {
try {
UItest window = new UItest();
window.open();
} catch (Exception e) {
e.printStackTrace();
}
}

public void open() {
Display display = Display.getDefault();
createContents();
shell.open();
shell.layout();
while (!shell.isDisposed()) {
if (!display.readAndDispatch()) {
display.sleep();
}
}
display.dispose();
}

protected void createContents() {
shell = new Shell();
shell.setSize(450, 300);
shell.setText("SWT Application");
shell.setLayout(new GridLayout(1, false));

Button button = new Button(shell, SWT.NONE);
button.addSelectionListener(new SelectionAdapter() {
public void widgetSelected(SelectionEvent arg0) {
label.setText(label.getText() + " " + label.getText());
}
});
button.setText("New Button");

label = new Label(shell, SWT.WRAP);
label.setLayoutData(new GridData(SWT.FILL, SWT.CENTER, false, false, 1, 1));
label.setText("New Label");

List list = new List(shell, SWT.BORDER);
list.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true, 1, 1));

}

protected Label getLabel() {
return label;
}
}

感谢您的宝贵时间。


解决了这些变化:

Button button = new Button(shell, SWT.NONE);
button.addSelectionListener(new SelectionAdapter() {
public void widgetSelected(SelectionEvent arg0) {
label.setText(label.getText() + " " + label.getText());
shell.layout(); // ADDED THIS
}
});
button.setText("New Button");

label = new Label(shell, SWT.WRAP);
// SET HORIZONTAL GRAB ON LABEL (FIRST TRUE IN GridData CONSTRUCTOR)
label.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, false, 1, 1));
label.setText("New Label");

最佳答案

我认为,问题在于文本更改时布局并未失效 - 尝试强制重新布局(通过调用 getShell().layout(true, true))。

关于java - 布局问题 : autogrow label (SWT),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3499349/

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