这是一些具有 2 个对象的示例代码。用于轻松创建面板和侦听器的面板对象,以及用于执行代码的框架对象。目的是让代码显示在 answertext 字段中按下了哪个按钮。但是,我看不到可以编译它的方法,因为我在任何地方制作 answertext 都超出了我需要的其他东西的范围。
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
class myPanel extends JPanel implements ActionListener {
public myPanel(int start, int numOfButtons){
setLayout(new FlowLayout(FlowLayout.LEFT, 10, 20));
JButton buttons[] = new JButton[numOfButtons];
for (int k = start; k < start + numOfButtons; k++){
buttons[ k ] = new JButton("Button " + k);
this.add( buttons[k] );
buttons[ k ].addActionListener(this);
}
}
public void actionPerformed(ActionEvent e)
{
myFrame.setText(e.getActionCommand());
}
}
public class myFrame extends JFrame{
public myFrame()
{
super("myFrame");
myPanel buttonPanel1 = new myPanel(1, 3);
myPanel buttonPanel2 = new myPanel(4, 3);
JPanel answerPanel = new JPanel();
JTextField answertext;
answertext = new JTextField(10);
answertext.setEditable(false);
answerPanel.add(answertext);
setSize(300,200);
setLocationRelativeTo(null);
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setLayout( new GridLayout(3,1) );
setTitle("ShowPressedButton");
add(buttonPanel1);
add(answerPanel);
add(buttonPanel2);
pack();
setVisible(true);
}
public void setText(string input)
{
answertext = input;
}
public static void main(String[] args) {
myFrame showButton = new myFrame();
showButton.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
}
}
我放了一个公共方法来设置答案文本,以便我的面板可以设置它,但是编译器说当我尝试编译时它找不到该方法