我有一张表格。我希望表单在其内容更新时显示为正在转换为其他表单。
我只有一个表单的内容得到更新,并希望有一个转换效果,就好像我正在转移到另一个表单。感谢。
Label instruction = new Label();
ImageViewer v = new ImageViewer();
instruction.setText(levels.nextS());
v.setImage(levels.nextI());
Button b = new Button("Submit");
b.addActionListener(x -> {
instruction.setText(levels.nextS());
v.setImage(levels.nextI());
current.animateHierarchy(300);
current.show();
});
current.add(FlowLayout.encloseCenter(score));
current.add(FlowLayout.encloseCenter(instruction));
答案 0 :(得分:1)
添加内容后,您可以致电animateHeirachy
或animateLayout
:
myForm.add(cmp);
myForm.animateHierarchy(300);
将myForm
替换为要将内容添加到的容器。