我想知道如何在选择 showMessageDialog 对话框的 X 按钮时使程序退出。目前,每当我这样做时,它都会继续运行代码,或者在确认或选项对话框的情况下,选择“是”选项。是否可以在对话框的代码中包含这种命令?例如:
JOptionPane.showMessageDialog(null, "Your message here");
我将如何编辑输出以便 X 按钮关闭程序?
我是否必须将 showMessageDialog 更改为另一种类型的对话框?
我想知道如何在选择 showMessageDialog 对话框的 X 按钮时使程序退出。目前,每当我这样做时,它都会继续运行代码,或者在确认或选项对话框的情况下,选择“是”选项。是否可以在对话框的代码中包含这种命令?例如:
JOptionPane.showMessageDialog(null, "Your message here");
我将如何编辑输出以便 X 按钮关闭程序?
我是否必须将 showMessageDialog 更改为另一种类型的对话框?
我不知道这是否是你想要的,但我在程序中放了一个确认框:
(...)
import org.eclipse.swt.widgets.MessageBox;
(...)
createButton(buttons, "&Exit", "Exit", new MySelectionAdapter() {
@Override
public void widgetSelected(SelectionEvent evt) {
MessageBox messageBox = new MessageBox(getShell(), SWT.YES | SWT.NO | SWT.ICON_QUESTION);
messageBox.setMessage("Are you sure?");
messageBox.setText("Exit");
if (messageBox.open() == SWT.YES) {
getParent().dispose();
}
}
});
并查看在线 javadoc (java 6)或(java 1.4),您还有另一种选择:
直接使用:直接
创建和使用一个JOptionPane,标准模式大致如下:
JOptionPane pane = new JOptionPane(arguments);
pane.set.Xxxx(...); // Configure
JDialog dialog = pane.createDialog(parentComponent, title);
dialog.show();
Object selectedValue = pane.getValue();
if(selectedValue == null)
return CLOSED_OPTION;
//If there is not an array of option buttons:
if(options == null) {
if(selectedValue instanceof Integer)
return ((Integer)selectedValue).intValue();
return CLOSED_OPTION;
}
//If there is an array of option buttons:
for(int counter = 0, maxCounter = options.length;
counter < maxCounter; counter++) {
if(options[counter].equals(selectedValue))
return counter;
}
return CLOSED_OPTION;
showMessageDialog()
没有返回值。这是一个例子showOptionsDialog()
。
public class Test
{
public static void main(String[] args){
final JFrame frame = new JFrame();
JPanel panel = new JPanel();
JButton button = new JButton("Test");
button.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent ae) {
int result = JOptionPane.showOptionDialog(null,
"Your message here", "", JOptionPane.DEFAULT_OPTION,
JOptionPane.PLAIN_MESSAGE, null, new String[] {"OK"}, "OK");
if (result == JOptionPane.CLOSED_OPTION) {
frame.dispose();
}
}
});
panel.add(button);
frame.setContentPane(panel);
frame.pack();
frame.setVisible(true);
}
}