我無法讓我的HBox中的元素增長,所以我從java2s.com下載了以下示例代碼。它作爲一個最小的不工作的例子:JavaFX:setHgrow(...)不起作用
package fxtest;
import javafx.application.Application;
import javafx.scene.Group;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.control.Label;
import javafx.scene.control.TextField;
import javafx.scene.layout.HBox;
import javafx.scene.layout.Priority;
import javafx.scene.paint.Color;
import javafx.stage.Stage;
public class Fxtest extends Application {
public static void main(String[] args) {
Application.launch(args);
}
@Override
public void start(Stage primaryStage) {
primaryStage.setTitle("");
Group root = new Group();
Scene scene = new Scene(root, 600, 250, Color.WHITE);
HBox hbox = new HBox();
TextField field = new TextField();
HBox.setHgrow(field, Priority.ALWAYS);
hbox.getChildren().addAll(new Label("Search:"), field, new Button("Go"));
root.getChildren().add(hbox);
primaryStage.setScene(scene);
primaryStage.show();
}
}
結果看起來like this。
如果我理解正確,TextField應該會增長,不是嗎?
我的Java版本爲1.7.0_51
我的JavaFX版本是51年2月2日,B13
你知道爲什麼它不工作/我有什麼做的? 謝謝!