0

我有以下代码:

public class OpaqueExample {

public static void main(String[] args) {
    EventQueue.invokeLater(new Runnable() {
        public void run() {
            OpaqueFrame frame = new OpaqueFrame();
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            frame.setVisible(true);
        }
    });
}

}

class OpaqueFrame extends JFrame {

private static final long serialVersionUID = 5486007826709615846L;

public OpaqueFrame() {
    super("Opacity Demo");
    this.setSize(200, 200);
    JComponent boxPanel = new BoxComponent(50, 50);
    this.add(boxPanel);
}

}

class BoxComponent extends JComponent {

private static final long serialVersionUID = -1935449999922455838L;

public BoxComponent(int x, int y) {
    super();
    this.setSize(x, y);
    this.setLocation(40, 40);
}

public void paintComponent(Graphics g) {
    g.setColor(Color.red);
}

} 

简而言之:
a。创建一个大小为 200、200
b 的框架。创建了一个大小为 50,50
c 的 Box 组件。设置框组件 40、40 从框架左上角开始的位置。盒子组件是红色的

当我运行它时,我希望在框架容器中看到一个较小的红色框。我做对了吗,或者我只是不了解摆动组件的基本知识(似乎是这样)。

请帮忙。感谢。

4

2 回答 2

2

没有足够的上下文来提供完整的答案。

这只是您问题的另一种可能的解决方案....

如果您的意图是尝试将组件放置在特定位置,那么为什么不直接设置其背景颜色而不是尝试使用自定义绘画来填充它呢?

如果您打算画很多小方块,那么您不需要为每个小方块使用单独的组件...

Swing 旨在利用布局管理器 API,它是框架工作方式的核心。

虽然我会第一个承认有时null布局很有用,但我会先尝试很多事情(个人)。

以下示例使用单个组件,但允许您在不同的位置和大小上绘制多个框...

在此处输入图像描述

import java.awt.Color;
import java.awt.Dimension;
import java.awt.EventQueue;
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.Rectangle;
import java.util.ArrayList;
import java.util.List;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.UIManager;
import javax.swing.UnsupportedLookAndFeelException;

public class GraphicsExample {

    public static void main(String[] args) {
        new GraphicsExample();
    }

    public GraphicsExample() {
        EventQueue.invokeLater(new Runnable() {
            @Override
            public void run() {
                try {
                    UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
                } catch (ClassNotFoundException | InstantiationException | IllegalAccessException | UnsupportedLookAndFeelException ex) {
                    ex.printStackTrace();
                }

                TestPane tp = new TestPane();
                tp.add(50, 50, 40, 40);

                JFrame frame = new JFrame("Testing");
                frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                frame.add(tp);
                frame.pack();
                frame.setLocationRelativeTo(null);
                frame.setVisible(true);
            }

        });
    }

    public class TestPane extends JPanel {

        private List<Rectangle> boxes;

        public TestPane() {
            boxes = new ArrayList<Rectangle>(25);
        }

        public void add(int x, int y, int width, int height) {
            boxes.add(new Rectangle(x, y, width, height));
            repaint();
        }

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

        @Override
        protected void paintComponent(Graphics g) {
            super.paintComponent(g);
            Graphics2D g2d = (Graphics2D) g.create();
            g2d.setColor(Color.RED);
            for (Rectangle box : boxes) {
                g2d.fill(box);
            }
            g2d.dispose();
        }        
    }    
}

您做错的另一件事是不尊重油漆链。当您覆盖其中一种paint方法时,您必须调用super.paintXxx以确保绘制链没有中断。这种方法做了很多重要的工作,如果你忘记包含它们,它们是非常无情的;)

查看执行自定义绘画以获取更多详细信息

于 2013-10-01T21:08:37.423 回答
1
frame.setLayout(null);

或者

setLayout(null);在框架的构造函数中

这允许您直接定义组件的位置

public void paintComponent(Graphics g) {
    g.setColor(Color.red);
}

这应该改为

public void paintComponent(Graphics g) {
    g.setColor(Color.red);
    g.fillRect(0, 0, getWidth(), getHeight());
}

图形类信息: http: //docs.oracle.com/javase/7/docs/api/java/awt/Graphics.html

于 2013-10-01T19:31:14.863 回答