次のコード例があります。
import javafx.application.Application;
import javafx.scene.Scene;
import javafx.scene.control.TextField;
import javafx.scene.layout.GridPane;
import javafx.scene.text.Text;
import javafx.stage.Stage;
public class Test extends Application {
public static void main(String[] args) {
launch(args);
}
@Override
public void start(Stage primaryStage) {
primaryStage.setTitle("JavaFX Test");
GridPane grid = new GridPane();
grid.add(new Text("Enter the value in the text box below:"), 0, 0, 3, 1);
grid.add(new Text("Label: "), 0, 1);
grid.add(new TextField(), 1, 1);
grid.add(new Text("units"), 2, 1);
Scene scene = new Scene(grid);
primaryStage.setScene(scene);
primaryStage.sizeToScene();
primaryStage.show();
}
}
次のウィンドウが表示されます。
ウィンドウのサイズを予想どおりの幅に変更すると、TextField もサイズ変更されます。
私の質問は、ウィンドウの右側にある白いスペースはどこから来ているのですか? ウィンドウのサイズが、コンポーネントが占めるスペースよりもはるかに広いのはなぜですか? ウィンドウに十分なスペースがあるにもかかわらず、ウィンドウを小さくすると TextField のサイズが変更されるのはなぜですか?
上部のテキストを削除すると、ウィンドウ サイズがより適切になります。
VBox と HBox を使用して探している効果を実現しようとしましたが、ウィンドウは常に上の最初の画像のように見えます。どうしたの?