gpt4 book ai didi

java - 如何使用 JFrame 按钮启动第二个 JFrame 而无需在 Java 中启动更多 JFrame?

转载 作者:行者123 更新时间:2023-11-29 07:04:09 28 4
gpt4 key购买 nike

我的程序应该在单击按钮时启动第二个 JFrame 并打印一条语句,但它总是启动三个 JFrame 并打印三个语句。我只需要它来打印出一份声明并启动一个 Jframe。这是代码:

import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import javax.swing.text.*;

@SuppressWarnings("serial")
public class Test extends JPanel implements ActionListener {
JButton button = new JButton();
String buttonString = "Buttontext";

public Test() {
}

@Override
protected void paintComponent(Graphics g) {
super.paintComponent(g);
button.setText("Buttontext");
button.setCursor(Cursor.getDefaultCursor());
button.setMargin(new Insets(0, 0, 0, 0));
button.setBounds(700, 400, 100, 20);
button.setActionCommand(buttonString);
button.addActionListener(this);
this.add(button);
}

public static void createandshowGUI() {
JFrame frame = new JFrame("Frame");
frame.getContentPane().setBackground(Color.white);
Dimension dim = Toolkit.getDefaultToolkit().getScreenSize();
frame.setSize(dim.width, dim.height);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.getContentPane().add(new Test());
frame.setExtendedState(JFrame.MAXIMIZED_BOTH);
frame.setVisible(true);
}

public static void main(String[] args) {
SwingUtilities.invokeLater(new Runnable() {
public void run() {
createandshowGUI();
}
});
}

public void actionPerformed(ActionEvent e) {
if (buttonString.equals(e.getActionCommand())) {
System.out.println("creating a new frame");
newframe();
}
}

public void newframe() {
JFrame frame2 = new JFrame();
Dimension dim = Toolkit.getDefaultToolkit().getScreenSize();
frame2.setSize(dim.width / 2, dim.height / 2);
frame2.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame2.setExtendedState(JFrame.MAXIMIZED_BOTH);
frame2.setVisible(true);
}
}

最佳答案

您不断在 paintComponent(Graphics) 方法中向您的 button 添加一个 ActionListener。这意味着每次调用此方法时,您都会向按钮添加另一个 ActionListener。因此,每次按下按钮时,无论在您按下按钮之前调用该方法多少次,它都会做同样的事情。

关于java - 如何使用 JFrame 按钮启动第二个 JFrame 而无需在 Java 中启动更多 JFrame?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21807086/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com