我正在尝试在JPanel上绘制一些填充的矩形并将该面板添加到JFrame但是当我运行程序时,我看到的只是JFrame。我使用frame.add(new RectanglePanel());
添加了JPanel,所以我不确定为什么面板没有出现。
框架类:
package h02;
import javax.swing.*;
// frame and its properties
public class RectangleFrame extends JFrame {
public RectangleFrame() {
// JFrame object
JFrame frame = new JFrame();
// properties
frame.setSize(300, 200);
frame.setLocationRelativeTo(null); // frame in centre
frame.setTitle("Drawing rectangles");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.add(new RectanglePanel());
frame.setVisible(true);
}
public static void main(String[] args) {
new RectangleFrame();
}
}
小组类:
package h02;
import javax.swing.*;
import java.awt.*;
public class RectanglePanel extends JPanel {
// drawing the rectangles
public void PaintComponent(Graphics g) {
super.paintComponent(g);
g.fillRect(110, 110, 20, 20);
g.fillRect(10, 10, 30, 120);
g.fillRect(60, 10, 60, 100);
g.fillRect(150, 10, 10, 20);
g.fillRect(240, 10, 10, 20);
g.fillRect(190, 30, 80, 30);
g.fillRect(210, 50, 60, 20);
g.fillRect(190, 70, 80, 50);
g.fillRect(300, 30, 50, 90);
g.fillRect(330, 10, 30, 20);
}
}
答案 0 :(得分:4)
public void PaintComponent(Graphics g) {
应该是
@Override
protected void paintComponent(Graphics g) {
答案 1 :(得分:0)
为什么不使用拖放编辑器,例如Netbeans提供的编辑器而不是硬编码?
我发现它更有效率。