gpt4 book ai didi

java - JFace Dialog 在仍在使用时处理小部件

转载 作者:行者123 更新时间:2023-11-29 05:08:36 26 4
gpt4 key购买 nike

我有一个扩展 jface.dialogs.Dialog 的类。在该对话框中有一个保存按钮。当用户按下那个按钮时,我需要从一些 swt.widgets.Text 字段中读取值,但是文本字段已经被处理掉了。

我做错了什么?

public class MyNewDialog extends Dialog {
private Text txt;

public MyNewDialog(Shell parentShell) {
super(parentShell);
}

@Override
protected Control createDialogArea(Composite parent) {
Composite container = (Composite) super.createDialogArea(parent);
container.setLayout(new GridLayout(2, false));

txt = new Text(container, SWT.BORDER);
txt.setLayoutData(new GridData(SWT.FILL, SWT.TOP, true, false, 1, 1));

return container
}

@Override
protected void createButtonsForButtonBar(Composite parent) {
Button saveButton = createButton(parent, IDialogConstants.OK_ID, "Save", true);
saveButton.addSelectionListener(new SelectionAdapter() {
@Override
public void widgetSelected(SelectionEvent p_e) {
String string = txt.getText() //widget is disposed exception
}
}
}

最佳答案

由于您正在为按钮使用 IDialogConstants.OK_ID,因此您可以使用 okPressed() 方法。无需添加特定的监听器。

@Override
protected void okPressed()
{
value = txt.getText();

super.okPressed();
}

然后创建一个getter方法方法来返回value变量:

public String getValue()
{
return value;
}

关于java - JFace Dialog 在仍在使用时处理小部件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29537726/

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