javaswing 按钮关闭窗口
时间: 2023-08-02 10:08:55 浏览: 103
java窗口关闭按钮
4星 · 用户满意度95%
要在 Java Swing 中实现按钮关闭窗口的功能,你可以使用以下代码:
```java
import javax.swing.*;
import java.awt.event.*;
public class ButtonExample {
public static void main(String[] args) {
JFrame frame = new JFrame("Button Example");
JButton button = new JButton("Close");
button.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
frame.dispose(); // 关闭窗口
}
});
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setSize(300, 200);
frame.setLayout(null);
frame.setVisible(true);
button.setBounds(100, 50, 100, 40);
frame.add(button);
}
}
```
上述代码创建了一个带有一个关闭按钮的窗口。当点击按钮时,使用 `frame.dispose()` 关闭窗口。这里使用了匿名内部类来处理按钮点击事件。
阅读全文