我有一个带有 gridbaglayout 布局的 jpanel,其中我有几个 jtextfields、几个 jlabels、几个动态添加的 jbuttons。因此我无法知道他们的具体顺序,因此无法使用 panel.getComponent(count)。如果有 getGridx(int x) 或 getGridy(int y) 之类的东西,我查看了 api。没找到。有没有类似这些方法的东西?
问问题
2339 次
1 回答
2
最简单的解决方案可能是使用GridBagLayout#getConstraints(Component)
并简单地遍历所有组件,直到找到与所需网格位置匹配的组件...
Component match = null;
GridBagLayout layout = ...
for (Component comp : getComponents()) {
GridBagConstraints gbc = layout.getConstraints(comp);
if (gbc.gridx = x && gbc.gridy = y) {
match = comp;
break;
}
}
于 2013-09-27T05:40:34.237 回答