import java.awt.*; import java.awt.event.*; public class MyFrame extends Frame implements ActionListener { private Button okButton; private Button exitButton; private TextField textField; public MyFrame() { super("My Frame"); // 初始化按钮和文本框 okButton = new Button("确定"); exitButton = new Button("退出"); textField = new TextField(20); // 设置布局 setLayout(new FlowLayout()); // 添加组件 add(okButton); add(exitButton); add(textField); // 注册事件监听器 okButton.addActionListener(this); exitButton.addActionListener(this); // 设置窗口大小和位置 setSize(300, 200); setLocationRelativeTo(null); // 显示窗口 setVisible(true); } @Override public void actionPerformed(ActionEvent e) { if (e.getSource() == okButton) { textField.setText("Hello World!"); } else if (e.getSource() == exitButton) { dispose(); System.exit(0); } } public static void main(String[] args) { new MyFrame(); } }
时间: 2024-02-14 22:22:19 浏览: 107
jsb.zip_awt_event_import java.awt._java 记事本
这段代码是一个Java程序,定义了一个名为MyFrame的类,继承了Frame类,并实现了ActionListener接口。它创建了一个窗口,里面包含确定按钮、退出按钮和一个文本框。当用户点击确定按钮时,文本框将显示“Hello World!”;当用户点击退出按钮时,程序会退出。这个程序使用了AWT(Abstract Window Toolkit)包提供的组件和布局管理器。
阅读全文