在Swing中,当按下ESC键时关闭对话框可以通过添加键盘监听器实现。以下是一个简单的示例:
import javax.swing.*;
import java.awt.*;
import java.awt.event.KeyAdapter;
import java.awt.event.KeyEvent;
public class SwingDemo {
public static void main(String[] args) {
SwingUtilities.invokeLater(() -> createAndShowGUI());
}
private static void createAndShowGUI() {
JFrame frame = new JFrame("ESC键关闭对话框示例");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setSize(300, 200);
JButton button = new JButton("打开对话框");
button.addActionListener(e -> {
JDialog dialog = new JDialog(frame, "对话框", true);
dialog.setSize(200, 100);
dialog.setLocationRelativeTo(null);
dialog.addKeyListener(new KeyAdapter() {
@Override
public void keyPressed(KeyEvent e) {
if (e.getKeyCode() == KeyEvent.VK_ESCAPE) {
dialog.dispose();
}
}
});
dialog.setVisible(true);
});
frame.getContentPane().add(button);
frame.setVisible(true);
}
}
在这个示例中,我们创建了一个JFrame,其中包含一个按钮。当按下按钮时,会打开一个模态对话框。我们为该对话框添加了一个键盘监听器,当按下ESC键时,对话框会关闭。
这个示例中使用的是Java Swing框架,它是Java的一个图形用户界面库,用于开发跨平台的桌面应用程序。
领取专属 10元无门槛券
手把手带您无忧上云