JavaGUI程序设计代码
时间: 2023-07-10 13:29:05 浏览: 121
以下是一个简单的Java GUI程序设计代码示例:
```java
import javax.swing.*;
import java.awt.event.*;
public class MyGUI implements ActionListener {
private JLabel label;
private JButton button;
public MyGUI() {
JFrame frame = new JFrame("My GUI");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setSize(300, 200);
label = new JLabel("Hello, world!");
frame.getContentPane().add(label);
button = new JButton("Click me!");
button.addActionListener(this);
frame.getContentPane().add(button, "South");
frame.setVisible(true);
}
public void actionPerformed(ActionEvent e) {
label.setText("Button clicked!");
}
public static void main(String[] args) {
new MyGUI();
}
}
```
这个程序创建了一个简单的窗口,包含一个标签和一个按钮。点击按钮会改变标签的文本。这个程序使用Swing GUI框架和Java事件模型来实现交互。
阅读全文