1

我想获得JButton返回值的位置。我需要该值来打印出数组列表中的元素。我在数组列表中有十个元素。AGridLayout(0,2)用于布局按钮。

所以我该怎么做?

                 for(int i=0;i<item.size();i++)
                {
                    JButton btn1= new JButton(item.get(i).print());

                    btn1.setPreferredSize(new Dimension(300,40));

                    panel2.setLayout(new GridLayout(0,2));

                    panel2.add(btn1, BorderLayout.NORTH);

                    content.add(panel2, BorderLayout.NORTH);

                }
            public Food selectFood(int input)
            {

                int get=0;

                if(input>0 && input< 11)
                {
                     item.get(input-1);

                }

想要获取位置作为打印所选项目的输入。

4

1 回答 1

4

我记得它可以使用JButton.getBounds()函数,然后它可以使用JButton.getBounds().xandJButton.getBounds().y来获取它的左上角位置。

于 2012-11-23T03:04:37.513 回答