1

我正在制作游戏 Master Mind,我用 JButton 填充了我的矩阵,这样人们就可以点击它们来改变颜色。

现在我想将矩形按钮的形状更改为圆形,有没有一种方法可以一次更改它们,因为我使用循环来创建所有它们。

4

2 回答 2

5

Here are some methods that have to be overwritten to edit the shape of a component. (Including sample code)

protected void paintComponent(Graphics g) 
  {
    if (getModel().isArmed()) {
      g.setColor(Color.lightGray);
    } else {
      g.setColor(getBackground());
    }
    g.fillOval(0, 0, getSize().width-1,getSize().height-1);

    super.paintComponent(g);
  }

  protected void paintBorder(Graphics g) {
    g.setColor(getForeground());
    g.drawOval(0, 0, getSize().width-1,     getSize().height-1);
  }

  Shape shape;
  public boolean contains(int x, int y) {
    if (shape == null || 
      !shape.getBounds().equals(getBounds())) {
      shape = new Ellipse2D.Float(0, 0, getWidth(), getHeight());
    }
    return shape.contains(x, y);
  }
于 2013-03-12T13:41:55.340 回答
2

您可以在 Google 上搜索有关此的教程。

这是一个简单的教程:如何更改 JButton 的形状

于 2013-03-12T12:36:10.153 回答