gpt4 book ai didi

java - PaintComponent 根本不工作

转载 作者:行者123 更新时间:2023-11-30 06:13:45 25 4
gpt4 key购买 nike

我正在使用paintComponent为类分配创建一个GUI,它根本不影响GUI的外观。首先,我只是将背景设置为白色。以下代码有效:

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

public class PA05a extends JPanel {
public static void main(String[] args) {
JFrame window = new JFrame("MouseDrawDemo");
JPanel content = new JPanel();

content.setBackground(Color.WHITE);

window.setContentPane(content);
window.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
window.setLocation(120,70);
window.setSize(400,300);
window.setVisible(true);
}
}

但这并不:

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

public class PA05a extends JPanel {
public static void main(String[] args) {
JFrame window = new JFrame("MouseDrawDemo");
JPanel content = new JPanel();

window.setContentPane(content);
window.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
window.setLocation(120,70);
window.setSize(400,300);
window.setVisible(true);
}

@Override
public void paintComponent(Graphics g) {
//add backdrop
super.paintComponent(g);
g.setColor(Color.WHITE);
g.fillRect(0,0,getWidth(),getHeight());
}
}

我不能不使用paintComponent,因为稍后我将添加会在帧与帧之间发生变化的内容。有人能指出我遗漏了什么吗?

最佳答案

JPanel content = new PA05a();

您没有创建 PA05a 的对象。 ;)

关于java - PaintComponent 根本不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49675703/

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