我如何创建生成 JButton 的方法?
how do i create a method that generates a JButton?
我试图创建一个方法,该方法采用一些参数来制作 JButton。按钮已创建,但它不会与 ActionPerformed 方法通信。任何人都可以帮我解决这个问题吗?
this image contains how the button normally is made and the method to create a button
this image shows the addButton method and the actionPerformed method
您当然可以编写一个为您创建 JButton 的方法:
public JButton createButton(String label, ActionListener listener, int x, int y) {
JButton b = new JButton(label);
name.addActionListener(listener);
name.setBounds(x, y, 150, 50);
return b;
}
然后使用这样的方法:
button19 = createButton("Toiletsager", this, 100, 100);
您当然也可以为每个按钮指定一个ActionListener
:
button20 = createButton("Toiletsager", e->System.out.println(e) , 100, 100);
我试图创建一个方法,该方法采用一些参数来制作 JButton。按钮已创建,但它不会与 ActionPerformed 方法通信。任何人都可以帮我解决这个问题吗?
this image contains how the button normally is made and the method to create a button
this image shows the addButton method and the actionPerformed method
您当然可以编写一个为您创建 JButton 的方法:
public JButton createButton(String label, ActionListener listener, int x, int y) {
JButton b = new JButton(label);
name.addActionListener(listener);
name.setBounds(x, y, 150, 50);
return b;
}
然后使用这样的方法:
button19 = createButton("Toiletsager", this, 100, 100);
您当然也可以为每个按钮指定一个ActionListener
:
button20 = createButton("Toiletsager", e->System.out.println(e) , 100, 100);