无法在我的JPanel上绘制任何内容

时间:2013-05-07 09:16:55

标签: java swing jpanel paintcomponent preferredsize

试图理解简单的Java事物。不能让这件事工作。警告:很多错误的代码传入。

import java.awt.*;
import java.lang.*;
import java.util.*;
import java.io.*;
import javax.swing.*;
import javax.swing.border.LineBorder;


class DrawFrame  {
    public DrawFrame(){
        DrawPanels panelFrame=new DrawPanels();
        JFrame mainFrame=new JFrame();
        mainFrame.setLayout(new GridLayout(1,3));
        mainFrame.setVisible(true);
        mainFrame.setSize(480, 800);
        mainFrame.setTitle("Title");
        mainFrame.setResizable(false);
        mainFrame.add(panelFrame.panel1);
        mainFrame.add(panelFrame.panel2);
        mainFrame.add(panelFrame.panel3);
        //panelFrame.panel1.getGraphics();
        panelFrame.panel1.add(new DrawBlock());
        panelFrame.panel2.add(new DrawBlock());
        panelFrame.panel3.add(new DrawBlock());
        mainFrame.revalidate();
        mainFrame.repaint();
        mainFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    }
    }
class DrawPanels extends JPanel{
     JPanel panel1=new JPanel();
     JPanel panel2=new JPanel();
     JPanel panel3=new JPanel();
    public DrawPanels(){
        panel1.setBackground(Color.ORANGE);
        panel2.setBackground(Color.BLACK);
        panel3.setBackground(Color.RED);
        panel1.setVisible(true);
        panel2.setVisible(true);
        panel3.setVisible(true);
        panel1.setBorder(new LineBorder(Color.BLACK));
        panel2.setBorder(new LineBorder(Color.BLACK));
        panel3.setBorder(new LineBorder(Color.BLACK));

    }
}

class DrawBlock extends JPanel{

    private static final long serialVersionUID = 1L;
    public void paintComponent(Graphics g){
        super.paintComponent(g);
        g.drawRect(1, 1,15,15);
    }
}


public class MainClass {

    /**
     * @param args
     */
    public static void main(String[] args) {


        DrawFrame Windos=new DrawFrame();
    }}

如果我的类DrawBlock扩展JPanel,每个JPanel上都会有一个小的白色方块,但是paintComponent()方法没有反应。如果我将DrawBlock扩展为JComponent,则根本不会有正方形。这可能是初学者的问题,但我无法解决它。

3 个答案:

答案 0 :(得分:2)

你遇到的主要问题是DrawBlock实际上没有大小,因此,重绘管理器会自动丢弃它... ...

enter image description here

尝试修改代码......

public class DrawBlock extends JPanel {

    private static final long serialVersionUID = 1L;

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

    @Override
    public void paintComponent(Graphics g) {
        System.out.println("...");
        super.paintComponent(g);
        g.setColor(Color.WHITE);
        g.drawRect(1, 1, 15, 15);
    }
}

添加getPreferredSize方法将让布局管理员知道您的组件想要的大小......

警告 - 代码审查;)

我不确定你为什么要做你已经完成的事情,但是让我们把它放在一边......

您创建了一个从JPanelDrawPanels)扩展而来的类,其中包含许多其他JPanel,但是不是将它们添加到框架中,而是从中提取面板那些到框架......

简单地将DrawPanels直接添加到框架本身......

会更有意义
public static class DrawFrame {

    public DrawFrame() {
        DrawPanels panelFrame = new DrawPanels();
        JFrame mainFrame = new JFrame();
        mainFrame.setLayout(new BorderLayout());
        mainFrame.setSize(480, 800);
        mainFrame.setTitle("Title");
        mainFrame.setResizable(false);
        mainFrame.add(panelFrame);
        mainFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        mainFrame.setVisible(true);
    }
}

public class DrawPanels extends JPanel {

    JPanel panel1 = new JPanel();
    JPanel panel2 = new JPanel();
    JPanel panel3 = new JPanel();

    public DrawPanels() {
        setLayout(new GridLayout(1, 3));
        panel1.setBackground(Color.ORANGE);
        panel2.setBackground(Color.BLACK);
        panel3.setBackground(Color.RED);
        panel1.setBorder(new LineBorder(Color.BLACK));
        panel2.setBorder(new LineBorder(Color.BLACK));
        panel3.setBorder(new LineBorder(Color.BLACK));

        panel1.add(new DrawBlock());
        panel2.add(new DrawBlock());
        panel3.add(new DrawBlock());

        add(panel1);
        add(panel2);
        add(panel3);

    }
}

注意 - 我将mainFrame.setVisible(true)移动到最后一个语句,这将确保框架在显示之前布局。

我还将布局管理器移动了一下......

答案 1 :(得分:0)

修改
尝试删除

mainFrame.revalidate();

这不是JFrame的公认命令。

此外,将@Override Annotation添加到paintComponent:

@Override
    public void paintComponent(Graphics g){
        super.paintComponent(g);
        g.drawRect(1, 1,15,15);
    }

然后它最适合我。

答案 2 :(得分:0)

g.setColor(Color.WHITE)

之前使用g.drawRect(1, 1,15,15);