作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的程序应该在单击按钮时启动第二个 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/
我是一名优秀的程序员,十分优秀!