3

当用户使用窗口关闭按钮(红色 X)按钮关闭任何应用程序窗口时。它会导致我的应用程序出现 Widget is Disposed 问题。当他们使用我提供的关闭应用程序关闭窗口时。一切正常。

@Override
protected void createButtonsForButtonBar(Composite parent) {
   createButton(parent, IDialogConstants.OK_ID, "Close Aplot", true);
}

@Override
protected void okPressed() {
   getShell().setVisible(false);
}
  1. 您可以按下窗口关闭按钮(红色 X)来使用上面的代码吗?
  2. 您可以禁用窗口关闭按钮(红色 X)吗?
4

3 回答 3

6

SWT.Close在上收听Shell

应该有助于:

public static void main(String[] args)
{
    Display display = new Display();
    final Shell shell = new Shell(display);
    shell.addListener(SWT.Close, new Listener()
    {
        public void handleEvent(Event event)
        {
            int style = SWT.APPLICATION_MODAL | SWT.YES | SWT.NO;
            MessageBox messageBox = new MessageBox(shell, style);
            messageBox.setText("Information");
            messageBox.setMessage("Close the shell?");
            event.doit = messageBox.open() == SWT.YES;
        }
    });

    shell.pack();
    shell.open();
    while (!shell.isDisposed())
    {
        if (!display.readAndDispatch())
            display.sleep();
    }
    display.dispose();
}

它将提示用户验证决定。

于 2013-06-03T15:31:24.307 回答
1

close()在 jface 对话框中,无论在何处按下 OK 或按下 CANCEL 或单击关闭(红色 x 按钮),它总是会调用方法。

覆盖 close 方法并检查返回码( use getReturnCode() 方法)。

于 2013-06-03T17:16:07.483 回答
0

我要做的第一件事是覆盖 ApplicationWindow 中的 close() 方法

/** the rc from the message dialog */
int rc = -1;

@Override
public boolean close()
{
    MessageDialog messagedialog = new MessageDialog(getShell(),
            "Confirm Exit", null, "Are you sure you want to exit?", 4,
            new String[]
            { "Yes", "No" }, 1);
    messagedialog.setBlockOnOpen(true);
    messagedialog.open();

    rc = messagedialog.getReturnCode();

    /** int to hold the return code from the message dialog */
    if (rc == 0)
    {
        return true;
    } else
    {
        return false;
    }
}

我要做的第二件事是监听“X”关闭按钮上的事件

shell.addListener(SWT.Close, new Listener()
{
    @Override
    public void handleEvent(Event event)
    {
        switch (rc)
        {
        case 0: // yes pressed
            event.doit = true;
            break;
        case 1: // no pressed
            event.doit = false;
            break;
        case -1: // escape pressed
            break; // do nothing
        default:
            break;
        }
    }
});

“event.doit”布尔字段确定外壳的关闭。如果该值等于'true' - “让我们做”,让我们关闭外壳(即rc = 0)。

如果该值等于 1 (rc = 1),则外壳保持打开状态。

如果按下 ESC(即 rc = -1),我们什么也不做。但是,如果这是必需的,我们可以最小化 shell 或基于此事件执行一些其他操作。

于 2015-03-21T13:11:37.840 回答