gpt4 book ai didi

java - 更改背景颜色时 JFrame 闪烁

转载 作者:行者123 更新时间:2023-11-29 05:24:12 25 4
gpt4 key购买 nike

我正在制作一个每 750 毫秒更改一次背景颜色的窗口...但是 JFrame 会像这样闪烁...

error

我想要这样的东西......

enter image description here

我找到了一些像这样的解决方案:

1.-Frame.getContentPane().setBackground(颜色);
2.-创建一个新线程
3.-Frame.getContentPane().repaint();

但是没用

我的代码...

Thread ciclo=new Thread(new Runnable() {

        float c=1f;
@Override
public void run() {
while(true){
Frame.getContentPane().setBackground(Color.getHSBColor((c/360), 1, 1));
Frame.getContentPane().repaint();
c=(c>=360)?1:c+5;
try{Thread.sleep(750);}catch(Exception e){}
}
}
});
ciclo.start();

我该如何解决这个问题?谢谢你的建议

最佳答案

您试图在后台线程中更改 Swing 状态,这违反了 Swing 线程规则。使用 Swing 计时器,因为这可能会解决您的问题。

new Timer(750, new ActionListener() {
public void actionPerformed(ActionEvent e) {
contentPane.setBackground((Color.getHSBColor((c/360), 1, 1));
contentPane.repaint();
c= (c >= 360) ? 1 : c + 5;
}
}).start();

编辑或更好:

import java.awt.Color;
import java.awt.Dimension;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;

import javax.swing.*;

@SuppressWarnings("serial")
public class BackgroundColorChange extends JPanel {
private static final int PREF_W = 400;
private static final int PREF_H = PREF_W;
private static final int TIMER_DELAY = 75;

public BackgroundColorChange() {
new Timer(TIMER_DELAY, new ActionListener() {
private int c = 1;

@Override
public void actionPerformed(ActionEvent arg0) {
setBackground(Color.getHSBColor((float) c / 360, 1f, 1f));
repaint();
c = (c >= 360) ? 1 : c + 5;
}
}).start();
}

@Override
public Dimension getPreferredSize() {
return new Dimension(PREF_W, PREF_H);
}

private static void createAndShowGui() {
BackgroundColorChange mainPanel = new BackgroundColorChange();

JFrame frame = new JFrame("BackgroundColorChange");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.getContentPane().add(mainPanel);
frame.pack();
frame.setLocationByPlatform(true);
frame.setVisible(true);
}

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

关于java - 更改背景颜色时 JFrame 闪烁,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23354143/

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