我正在GUI中制作一个简单的计算器,我已经键入并准备好了所有代码,但是我在编写代码时遇到了麻烦,因此当用户按下数字按钮时,相应的数字会显示在上方的文本框中。我需要使用单选按钮吗?预先感谢
我已经尝试了动作侦听器,但是它们没有起作用(或者我可能不正确地使用了它们)。我已将代码放入1按钮。
JButton num1 = new JButton("1");
num1 = b1;
num1.setSize(50,50);
num1.setLocation(20,200);
num1.setBackground(Color.WHITE);
num1.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent e)
{
答案 0 :(得分:0)
Just append the number to the JTextField
(using setText(String)
and getText()
) in the actionPerformed
function.