使用b1.addActionListener(new B1()); b2.addActionListener(new B2()); class B1 implements ActionListener { public void actionPerformed(ActionEvent e) { who.setText("Button 1"); } } class B2 implements ActionListener { public void actionPerformed(ActionEvent e) { who.setText("Button 2"); } }代码用Java编写包含两个按钮和一个标签,将发生单击事件的按钮上的文本信息显示在标签中
时间: 2024-02-24 12:00:38 浏览: 146
好的,以下是一个用Java编写的示例程序,实现了你所要求的功能:
```java
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
public class ButtonAndLabelExample extends JFrame {
private JLabel label;
private JButton button1, button2;
public ButtonAndLabelExample() {
// 创建窗口
super("Button and Label Example");
setSize(300, 200);
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
// 创建标签和按钮
label = new JLabel("");
button1 = new JButton("按钮1");
button2 = new JButton("按钮2");
// 添加按钮的单击事件监听器
button1.addActionListener(new B1());
button2.addActionListener(new B2());
// 将标签和按钮添加到窗口
JPanel panel = new JPanel();
panel.setLayout(new BoxLayout(panel, BoxLayout.Y_AXIS));
panel.add(label, BorderLayout.CENTER);
panel.add(button1, BorderLayout.PAGE_START);
panel.add(button2, BorderLayout.PAGE_END));
add(panel);
// 显示窗口
setVisible(true);
}
class B1 implements ActionListener {
public void actionPerformed(ActionEvent e) {
// 获取按钮上的文本信息
String text = button1.getText();
// 在标签中显示文本信息
label.setText(text);
}
}
class B2 implements ActionListener {
public void actionPerformed(ActionEvent e) {
// 获取按钮上的文本信息
String text = button2.getText();
// 在标签中显示文本信息
label.setText(text);
}
}
public static void main(String[] args) {
new ButtonAndLabelExample();
}
}
```
当你单击按钮时,按钮上的文本信息将会显示在标签中。你可以根据需要修改按钮的文本和标签的初始文本。在这个示例程序中,我们使用了内部类来实现按钮的单击事件监听器。
阅读全文