gpt4 book ai didi

java - 如何使用 netbeans 将 jLabel 从 Jframe 的一侧移动到另一侧

转载 作者:行者123 更新时间:2023-12-01 07:52:19 24 4
gpt4 key购买 nike

我想创建一个小型应用程序。在我的应用程序中,我有 jLabel1Jbutton1。我想使用 jButton 单击将 jLabel1 从一侧移动到另一侧。我不知道如何在jButton1ActionPerformed调用它来创建jLabel1的动画。我已经完成了一个绘制应用程序代码,如下所示。

这是我的代码:

public void paint(Graphics g)
{
super.paint(g);
Graphics2D g2=(Graphics2D)g;

g2.drawString("ancd", x, y);
try {
Thread.sleep(10000);
} catch (Exception e) {
System.out.println(""+e);
}
x+=10;
if(x>this.getWidth())
{
x=0;
}
repaint();
}

最佳答案

enter image description here

为了简单起见,您可以使用 Swing 计时器来制作动画。但是,如果我是你,我就不会移动 JLabel。但我将直接在 JPanel 上绘制并保留一组位置(图像的 x 和 y)。在计时器中,更新位置并重新绘制。

由于您想在屏幕上移动 JLabel,您可以执行以下操作:

class DrawingSpace extends JPanel{

private JLabel label;
private JButton button;
private Timer timer;

public DrawingSpace(){
setPreferredSize(new Dimension(200, 300));
initComponents();
add(label);
add(button);
}

public void initComponents(){
label = new JLabel("I am a JLabel !");
label.setBackground(Color.YELLOW);
label.setOpaque(true);
button = new JButton("Move");

//Move every (approx) 5 milliseconds
timer = new Timer(5, new ActionListener(){
@Override
public void actionPerformed(ActionEvent e){
//Move 1 px everytime
label.setLocation(label.getLocation().x, label.getLocation().y+1);
}
});
button.addActionListener(new ActionListener(){
@Override
public void actionPerformed(ActionEvent e){
if(!timer.isRunning())
timer.start();
else
timer.stop();
}
});
}
}

然后是运行程序的类:

class Mover{
public static void main(String[] args){

SwingUtilities.invokeLater(new Runnable() { // Run the GUI codes on the EDT
@Override
public void run() {
JFrame frame = new JFrame("Some Basic Animation");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.add(new DrawingSpace());
frame.pack();
frame.setLocationRelativeTo(null);
frame.setVisible(true);
}
});
}
}

如果您打算使用 paint() 来实现,我想说您可能应该重写 paintComponents(Graphics g) 而不是 paint(Graphics g) 来自 Java 组件。另外,不要使用诸如 Thread.sleep() 之类的东西来混淆您的绘制方法,它可能会卡住您的 UI。 Paint 方法应该只包含绘画所需的代码,而不包含其他内容。

关于java - 如何使用 netbeans 将 jLabel 从 Jframe 的一侧移动到另一侧,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35225268/

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