gpt4 book ai didi

java - 单击后如何在 actionPerformed 内创建标签?

转载 作者:行者123 更新时间:2023-12-01 18:34:24 27 4
gpt4 key购买 nike

如何在点击后创建标签? (我必须在 actionPerformed 方法中创建一个标签,不要问我为什么)ty!

 public static void main (String [] args)
{
JFrame Frame = new JFrame ();
Frame.setSize(WIDTH_FRAME,HEIGHT_FRAME);
Frame.setLayout(null);
JButton Button = new JButton("x");
Button.setBounds(a,b,c,d);
Button.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {

JLabel v = new JLabel ("xxxxxxxxxx");
v.setBounds(50,50,50,50);
Frame.add(v);
Frame.revalidate();
Frame.repaint();
}
});

Frame.add(Button);
Frame.setVisible(true);

最佳答案

你了解范围的概念吗? JLabel v 是本地范围的,无法从 actionPerformed 外部访问。您只需将 Frame.add(v); 放在 actionPerformed即可。然后您需要revalidate()repaint()框架,就像在运行时添加组件时应该做的那样

<小时/>

旁注

  • 空布局会导致很多问题,因此您应该考虑使用布局管理器。看看Laying out Components Within a Container更多细节。

  • Swing 应用程序应在事件调度线程上运行。您可以通过将 main 中的代码包装在 SwingUtilities.invokeLater(...) 中来实现此目的。查看更多Initial Threads

  • 记下 setBounds 的硬编码值。这将导致只有一个添加的标签可见。我强烈建议您研究一下 FlowLayoutBoxLayout 等布局管理器。使动态添加组件更加“自然”的布局。

<小时/>

框布局示例

import java.awt.BorderLayout;
import java.awt.Dimension;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.Box;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JScrollPane;
import javax.swing.SwingUtilities;

public class BoxLayoutDemo {

private Box box;
private int count = 1;
public BoxLayoutDemo() {
box = Box.createVerticalBox();
JButton button = createButton();

JScrollPane scroll = new JScrollPane(box);
scroll.setPreferredSize(new Dimension(200, 300));
JFrame frame = new JFrame();
frame.add(scroll);
frame.add(button, BorderLayout.NORTH);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.pack();
frame.setLocationRelativeTo(null);
frame.setVisible(true);
}

private JButton createButton() {
JButton button = new JButton("Add Label");
button.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent e) {
box.add(new JLabel("JLabel " + count));
box.add(Box.createVerticalStrut(10));
box.revalidate();
box.repaint();
count++;
}
});
return button;
}

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

关于java - 单击后如何在 actionPerformed 内创建标签?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22702865/

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