如何在java中的方法中添加一个圆?

时间:2013-11-10 20:32:59

标签: java user-interface

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编写的代码,我想知道如何添加两个圆圈以便创建一个有两个部分的板子?感谢。

P.S我是java的新手

1 个答案:

答案 0 :(得分: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);
}

希望这会有所帮助