用Java设计一个窗体,窗体背景为绿色,在窗体中加入两个按钮,退出和显示。
时间: 2024-05-06 20:21:23 浏览: 117
好的,我可以帮您解答这个问题。以下是Java代码示例来实现您所描述的窗体:
```
import javax.swing.*;
import java.awt.*;
public class GreenWindow extends JFrame {
public GreenWindow() {
setTitle("My Green Window");
setSize(300, 200);
setLocationRelativeTo(null);
// Set background color to green
getContentPane().setBackground(Color.green);
// Create exit button
JButton exitButton = new JButton("Exit");
exitButton.addActionListener(event -> System.exit(0));
// Create display button
JButton displayButton = new JButton("Display");
// Add buttons to content pane
JPanel buttonPanel = new JPanel();
buttonPanel.add(exitButton);
buttonPanel.add(displayButton);
getContentPane().add(buttonPanel, BorderLayout.SOUTH);
}
public static void main(String[] args) {
GreenWindow window = new GreenWindow();
window.setDefaultCloseOperation(EXIT_ON_CLOSE);
window.setVisible(true);
}
}
```
这段代码会创建一个继承自JFrame的窗体,设置背景颜色为绿色,并添加退出和显示两个按钮。当您单击退出按钮时,程序将退出,单击显示按钮时,您可以插入您要显示的内容。
阅读全文