我目前遇到以下问题:
我需要在运行时动态更新组件定位。我正在为外部应用程序创建一个表单编辑器。我对标准Swing组件使用了wrapper-classes,目前是JPanel
和JLabel
。小组正在使用 TableLayout
。我将每个组件位置存储在每个组件的字段中。当某些内容发生变化时,我需要递归更新所有位置。这是我更新职位的方法:
public void updatePositioning() {
Component[] comps = getComponents();
removeAll();
for (Component comp:comps) {
System.out.println("Moving component "+comp + " to x="+pos.get(comp).getX()
+" to y="+pos.get(comp).getY());
c = new TableLayoutConstraints(String.valueOf(pos.get(comp).getX())+","
+String.valueOf(pos.get(comp).getY()));
add(comp, c);
if (comp instanceof EditPanel) ((EditPanel)comp).updatePositioning();
}
repaint();
revalidate();
}
我知道,这很粗糙,但它不起作用。所有组件似乎都属于0,0网格单元。正如我通过调试器看到的那样,X和Y是正确的。以下是我向面板添加组件的方法:
public void addComponent(TableLayouted comp, int x, int y) {
c = new TableLayoutConstraints(String.valueOf(x)+","+String.valueOf(y));
add((JComponent) comp, c);
//saving position of the component
pos.put((Component) comp, comp.getTablePositon());
System.out.println("Component "+comp+"added to x="+x+"y="+y);
}
有什么建议吗?
答案 0 :(得分:2)
答案 1 :(得分:0)
我终于用以下代码解决了它:
Component[] comps = getComponents();
removeAll();
layout = new TableLayout();
layout.setColumn(columns);
layout.setRow(rows);
setLayout(layout);
这意味着,完全重新创建所有布局是有效的。谢谢大家的帮助!