1

我正在使用带有 GridBagLayout 的 JFrame,并且我希望能够从特定的 x,y 坐标获取组件(在我的情况下为 JButton)。这不应该是可能的,因为我一开始就给了它 x,y 坐标和 GridBagConstraints 吗?

是否有捷径可寻?

4

3 回答 3

3

我希望能够从特定的 x,y 坐标中获取组件(在我的情况下为 JButton)。

  1. 为每个按钮添加一个 ActionListener。
  2. event.getSource()在 ActionListener 代码中,您可以使用ActionEvent的方法获取您单击的按钮。
  3. 一旦知道了来源,就可以使用getParent()Component 的方法获取父 Container。
  4. getLayout()然后就可以使用Container的方法获取布局管理器了。
  5. 拥有 GridBagLayout 后,您可以使用该getContraints()方法对 Component 进行约束。
  6. 然后你可以得到x/y坐标。
于 2013-03-08T19:15:00.623 回答
1

如果您知道所需的 JFrame 上的 x,y 坐标,您可以使用 GridBagLayout 的 location() 方法找到单元格(GridBagConstraints 中的 x,y)。知道 GridBagLayout 上的 x,y 后,您希望遍历 JFrame 的组件并在 GridBagConstraints 中找到具有相同 x,y 的组件,并将其与方法 getConstraints(Component comp) 上给出的约束进行比较。

看看GridBagLayout API

于 2013-03-08T18:59:56.647 回答
0

在此处输入图像描述
这是实现您想要的东西的小可笑示例。我希望它会对你有所帮助...

import javax.swing.JFrame;
import javax.swing.JButton;
import javax.swing.SwingUtilities;
import java.awt.GridBagLayout;
import java.awt.GridBagConstraints;
import java.awt.Color;
import java.awt.Point;
import java.awt.Container;
import java.awt.event.ActionListener;
import java.awt.event.ActionEvent;
import java.util.Map;
import java.util.Set;
import java.util.LinkedHashMap;
class GridBagFrame extends JFrame implements ActionListener
{
    GridBagLayout gb ;
    GridBagConstraints gc;
    Map <Point,JButton> map ;
    final int SIZE = 20;
    public void createAndShowGUI()
    {
        gb = new GridBagLayout();
        gc = new GridBagConstraints();
        gc.fill = GridBagConstraints.BOTH;
        map = new LinkedHashMap<Point,JButton>();
        Container container = getContentPane();
        container.setLayout(gb);
        int x =0 , y = -1 ;
        JButton[] button = new JButton[SIZE];
        for (int i = 0 ; i < SIZE ; i++ )
        {
            button[i] = new JButton(String.valueOf(i + 1));
            if (i % 4 == 0)
            {
                x = 0 ;
                y = y +1;
            }
            gc.gridx = x++;
            gc.gridy = y;
            gb.setConstraints(button[i],gc);
            container.add(button[i]);
            map.put(new Point(x,y),button[i]);
            button[i].setActionCommand(x+","+y);
            button[i].addActionListener(this);
        }
        setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        pack();
        setResizable(false);
        setVisible(true);
    }
    @Override
    public void actionPerformed(ActionEvent evt)
    {
        resetAll();
        JButton source = (JButton)evt.getSource();
        String command = source.getActionCommand();
        String[] arr = command.split(",");
        int x = Integer.parseInt(arr[0]);
        int y = Integer.parseInt(arr[1]);
        for ( int iy = y - 1; iy <= y + 1; iy++)
        {
            for (int ix = x -1 ; ix <= x + 1 ; ix++)
            {
                JButton button = map.get(new Point(ix,iy));
                if (button != null)
                {
                    button.setForeground(Color.red);
                }
            }
        }
        source.setForeground(Color.blue);
    }
    private void resetAll()
    {
        Set<Point> pointSet = map.keySet();
        for (Point point : pointSet )
        {
            map.get(point).setForeground(Color.black);
        }
    }
    public static void main(String[] args) 
    {
        SwingUtilities.invokeLater( new Runnable()
        {
            @Override
            public void run()
            {
                GridBagFrame frame = new GridBagFrame();
                frame.createAndShowGUI();
            }
        });
    }
}
于 2013-03-08T20:56:05.147 回答