3

所以我有一个程序,我在一组 JButton 和一个 JTextArea 旁边使用paintComponent(准确地说是弧形和椭圆形)显示图像,并且我希望弧形/椭圆形在/如果用户更改大小时改变大小框架。我已经实现了 getWidth、getHeight 的东西,但我似乎无法让它工作。

这是我的代码。如果我不设置PreferredSize,那么它不起作用;弧形/椭圆形在框架边缘和按钮之间被挤压。如果我尝试使用 getWidth() 和 getHeight() 而不是 200 作为大小,它也不起作用;弧形/椭圆形根本不出现。不知道该怎么办。

此外,任何使我的代码不那么复杂的提示(例如,如果只需要一个类)将不胜感激。

public class GUIDesign
{
public static void main(String[] args)
{
    GUIFrame frame = new GUIFrame();
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.setVisible(true);
}
}
class GUIFrame extends JFrame
{
PaintPanel2 canvas = new PaintPanel2();
public GUIFrame()
{
    ...

    add(mainHolder, BorderLayout.CENTER);   //has the JButtons, JTextArea.
    add(canvas, BorderLayout.WEST);
    this.setTitle("this");
    this.pack();
    this.setLocationRelativeTo(null);
}
}
class PaintPanel2 extends JPanel
{
private static int SIZE = 200;

public PaintPanel2()
{
    setPreferredSize(new Dimension(SIZE, SIZE));
}
protected void paintComponent(Graphics g)
{
    super.paintComponent(g);

    int xCenter = getWidth()/2;
    int yCenter = getHeight()/2;

    int startOvalX = (int) (xCenter/5);
    int startOvalY = (int) (yCenter/5);
    int endOvalX = (int) (xCenter * 1.5);
    int endOvalY = (int) (yCenter * 1.5);
    g.setColor(Color.green);
    g.fillArc(startOvalX, startOvalY, endOvalX, endOvalY, 0, 180);
    g.setColor(Color.black);
    g.drawArc(startOvalX, startOvalY, endOvalX, endOvalY, 0, 180);
    g.setColor(Color.black);
    g.fillOval((int)(startOvalX/1.5) - 1, (int) (startOvalY * 2.5),(int) (endOvalX * 1.1) + 2,(int)(endOvalY/1.5));
    g.setColor(Color.green);
    g.fillOval((int)(startOvalX/1.5), (int) (startOvalY * 2.5) -1,(int) (endOvalX * 1.1),(int)(endOvalY/1.5));
}
}
4

1 回答 1

2

当您使用 aBorderLayout作为布局管理器时,添加到 中的组件CENTER将在主容器调整大小时调整大小。因此,如果您更改代码以使画布居中,您将获得预期的结果:

add(mainHolder, BorderLayout.WEST);   //has the JButtons, JTextArea.
add(canvas, BorderLayout.CENTER);
于 2012-10-09T15:54:31.887 回答