1

我正在做一个项目JPanelsJFrames我在哪里创建面板,上面写着“欢迎来到 Target”以及位于消息下方的 Target 徽标。我拥有的类是 Main、TargetLogoPanel 和 TargetLogoUI。我尝试弄乱在 Netbeans 7.1 中实现的设计功能,但找不到以这种方式绘制椭圆的方法,所以这是我添加的代码:

@Override
protected void paintComponent(Graphics g) {
    g.setColor(Color.red);
    g.fillOval(((targetPanel.getWidth()) / 2) - 100,
            ((targetPanel.getHeight()) / 2) - 100, 200, 200);
    g.setColor(Color.WHITE);
    g.fillOval(((targetPanel.getWidth()) / 2) - 65,
            ((targetPanel.getHeight()) / 2) - 65, 130, 130);
    g.setColor(Color.red);
    g.fillOval(((targetPanel.getWidth()) / 2) - 30,
            ((targetPanel.getHeight()) / 2) - 30, 60, 60);

}

徽标的宽度为 200 像素,并在调整框架大小时保持居中。但是,就我添加的内容而言,运行程序时不会绘制圆圈。在我的主要方法中,我把new TargetLogoUI().setVisible(true); 我到底做错了什么?

4

2 回答 2

1

您提供的代码段存在许多问题。

  • 您依赖的是硬(魔术)数字。虽然有时这会起作用,但您应该尝试避免这是一种危险的做法
  • 您似乎没有向父容器布局管理器提供任何大小提示,这通常意味着您的组件将向布局管理器询问 0x0 空间。
  • 您没有调用super.paintComponent,这是确保组件正确绘制所必需的。
  • 您依赖来自外部资源的信息来尝试定位容器。这不是 的工作paint,这是布局管理器的工作。

这些只是我们可以从您的代码段中看到的内容,可能还有其他问题。

public class Target {

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

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

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

    public class TestPane extends JPanel {

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

        protected void paintComponent(Graphics g) {

            super.paintComponent(g);

            int width = getWidth();
            int height = getHeight();

            int radius = Math.min(width, height);

            g.setColor(Color.red);
            g.fillOval(
                    (int)((radius / 2) - (radius * 0.5)),
                    (int)((radius / 2) - (radius * 0.5)), 
                    (int)radius, 
                    (int)radius);
            g.setColor(Color.WHITE);
            g.fillOval(
                    (int)((radius / 2) - (radius * 0.325)),
                    (int)((radius / 2) - (radius * 0.325)), 
                    (int)(radius * 0.65), 
                    (int)(radius * 0.65));
            g.setColor(Color.red);
            g.fillOval(
                    (int)((radius / 2) - (radius * 0.15)),
                    (int)((radius / 2) - (radius * 0.15)), 
                    (int)(radius * 0.3), 
                    (int)(radius * 0.3));

        }
    }
}
于 2013-02-28T00:35:33.327 回答
0

我在谷歌上搜索了一个靶心并遇到了这个例子。我提供了JPanel下面的修改。

我设置rings = 3并翻转红色/白色paintComponent()

class Bullseye extends JPanel {
  static final int SIZE = 300; // initial window size
  int rings = 3; // Number of rings to draw in bullseye

  public Bullseye() {
    this.setBackground(Color.white);
    this.setPreferredSize(new Dimension(SIZE, SIZE));
  }

  public void setRings(int r) {
    rings = r;
    this.repaint(); // new value of rings - better repaint
  }

  public void paintComponent(Graphics g) {
    super.paintComponent(g);
    // x,y coordinate of top left corner for drawing circles
    int x = SIZE / 2;
    int y = SIZE / 2;

    for (int i = rings; i > 0; i--) {
      if (i % 2 == 0)
        g.setColor(Color.white);
      else
        g.setColor(Color.red);
      int radius = i * 100 / rings; // compute radius of this ring
      g.fillOval(x - radius, y - radius, radius * 2, radius * 2);
    }
  }
}
于 2013-02-28T00:22:32.297 回答