0
public static void board(){ //Create's my board
    {
        JFrame board = new JFrame();
        board.setSize(400, 200 );
        board.setTitle("Quiz Board Game");
        Container pane = board.getContentPane();
        pane.setLayout(new GridLayout(rows, columns));
        Color temp;
        for (int i = 0; i < rows; i++)
        {
            if (i%2 == 0)
            {
                temp = col1;
            }
            else
            {
                temp = col2;
            }
            for (int j = 0; j < columns; j++)
            {
                JPanel panel = new JPanel();
                panel.setBackground(temp);
                if (temp.equals(col1))
                {
                    temp = col2;
                }
                else
                {
                    temp = col1;
                }
                pane.add(panel);
            }
        }
        board.setVisible(true);

我有这个用java编写的代码,我想知道如何添加两个圆圈以便创建一个有两块的板?谢谢。

PS我是java新手

4

1 回答 1

0

覆盖paintComponent(Graphics g) 方法。

// create Image 
Image i = new ImageIcon("//filepath").getImage();
int pointXForFirstPiece = 0; // update for the x position of where your piece will be
int pointYForFirstPiece = 0; // update for the y position

public void paintComponent(Graphics g) {
    // do the painting for the two objects here
    // paint image
    // create another image object as done above, and then 
    // rewrite the line below for the second piece
    g.drawImage(i, pointXForFirstPiece, pointYForFirstPiece, null);
}

希望这可以帮助

于 2013-11-10T21:32:55.547 回答