基本区别是什么?
当我喜欢这样
Button button = new Button();
button.setPrefWidth(50);
button.setMaxWidth(Double.MAX_VALUE);
任何人都会认为按钮将以 50 的宽度显示,并且可以扩展到无限大,但实际情况是按钮占据了屏幕的总宽度。
有谁知道他们的意图是什么?
我的边框窗格代码:
borderPane.setPadding(new Insets(10,10,10,10));
borderPane.setCenter(button);
borderPane.getStyleClass().add("bpane");
//Region region = (Region) anyNode;
button.setStyle("-fx-background-color: red;");