1
私は1つのフォームを持っています。そのコンテンツが更新されているときに、他のフォームに移行しているように見えるようにしたいと思います。ワンフォーム遷移効果
コンテンツが更新され、別のフォームに移動しているかのようにトランジション効果を持たせたいフォームが1つだけあります。ありがとう。
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));
ありがとう、私は今日それを試してみる – timsa7
それは部分的に働いた。ラベルのアニメーションを参照してください。ラジオボタンとImageViewはアニメ化されません。 – timsa7
あなたがすでに試したことを理解するために、ここにコードスニペットを投稿してください。 – Diamond