如何调整JavaFX 3D子场景的大小?

 2023-02-16    378  

问题描述

此代码场景是300×300大.当我调整包含窗口/舞台的大小时,视口无法调整大小.

Parent没有任何width或height属性.如何将Parent和/或SubScene的大小调整为更换窗口大小?

如何调整JavaFX 3D子场景的大小?

推荐答案

将其绑定到父

SubScene subscene = new SubScene(root, 1024, 768, true, null);
subscene.setFill(Color.GREY);
subscene.setCamera(camera);
StackPane stackPane = new StackPane();
stackPane.getChildren().add(subscene);
subscene.heightProperty().bind(stackPane.heightProperty());
subscene.widthProperty().bind(stackPane.widthProperty());

其他推荐答案

我发现将subscene对象的托管属性设置为false也很重要.

subscene.setManaged(false);

以这种方式,subscene对象的大小不会影响其母体stackpane对象的大小和调整大小的大小在降低stackpane对象的大小时也将起作用.

其他推荐答案

使用以下方法,您可以将您的子种入式菜单中延长窗格类(例如Borderpane,Gridpane等).另外,辛烯与窗格的大小不同:

public class GuiControler extends BorderPane implements Initializable,ChangeListener {

    //Set a changeListener to the Stage's Window and Implement the ChangeListener in the class where you want to make the subScene scaling.

    stage.widthProperty().addListener(this);
    stage.heightProperty().addListener(this); 

 //....


     @Override
            public void changed(ObservableValue observable, Object oldValue, Object newValue) {
                double width = stage.getWidth();
                double height = stage.getHeight();
                if(observable.equals(this.widthProperty())) {
                    double scale = width / 400; // 400 is my initial width size of the stage (main java app window) window
                    subScene.setWidth(200*scale); // 200 is my initial size of the subscene window
                }else if(observable.equals(this.heightProperty())){
                    double scale = height / 400; // 400 is initial size for stage height window
                    subScene.setHeight(250*scale); // 250 is initial size for subScene width
                }
            }
            }

以上所述是小编给大家介绍的如何调整JavaFX 3D子场景的大小?,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对77isp云服务器技术网的支持!

原文链接:https://77isp.com/post/34084.html

=========================================

https://77isp.com/ 为 “云服务器技术网” 唯一官方服务平台,请勿相信其他任何渠道。