11

アプリケーションのメイン ウィンドウの現在のシーン (この場合はログイン フレーム) を置き換える JavaFX ステージのスケーリング トランジションを作成しようとしています。
これが発生すると、新しいシーンが大きくなるため、ウィンドウはエレガントではない方法で突然サイズ変更されます。

ステージのサイズ変更に対してこれを行うために、スケーリングまたはサイズ変更トランジションを設定する方法はありますか?

関連コード:

InputStream is = null;
try {
    is = getClass().getResourceAsStream("/fxml/principal.fxml");
    Region pagina = (Region) cargadorFXML.load(is);
    cargadorFXML.<ContenedorPrincipal>getController().setEscenario(escenario);

    final Scene escena = new Scene(pagina, 900, 650);

    escena.setFill(Color.TRANSPARENT);
    escenario.setScene(escena);
    escenario.sizeToScene();
    escenario.centerOnScreen();
    escenario.show();
} catch (IOException ex) {
    // log "Unable to load the main application driver"
    log.error("No fue posible cargar el controlador principal de la aplicación."); 
    log.catching(ex);
} finally {
    if (is != null) {
        try {
            is.close();
        } catch (IOException e) {}
    }
}
4

2 に答える 2

4

私はあなたのアイデアがとても気に入ったので、ちょっとしたことをすることができました。これがお役に立てば幸いです。

Timerアニメーションの印象を与えるために、ステージの幅と高さを 25ms ごとに変更するためにを使用しました。

import java.util.Timer;
import java.util.TimerTask;

import javafx.application.Application;
import javafx.scene.Group;
import javafx.scene.Scene;
import javafx.stage.Stage;

public class SmoothResize extends Application {

    @Override
    public void start(final Stage stage) throws Exception {
        stage.setTitle("Area Chart Sample");
        Group root = new Group();
        Scene scene  = new Scene(root, 250, 250);
        stage.setResizable(false);

        Timer animTimer = new Timer();
        animTimer.scheduleAtFixedRate(new TimerTask() {
            int i=0;

            @Override
            public void run() {
                if (i<100) {
                    stage.setWidth(stage.getWidth()+3);
                    stage.setHeight(stage.getHeight()+3);
                } else {
                    this.cancel();
                }
                i++;
            }

        }, 2000, 25);

        stage.setScene(scene);
        stage.show();
    }

    public static void main(String[] args) {
        launch(args);
    }
}
于 2013-07-23T09:14:48.137 に答える