Текстовое поле Javafx расширяется до ширины всплывающего окна ⇐ JAVA
-
Anonymous
Текстовое поле Javafx расширяется до ширины всплывающего окна
I'm using a JavaFX Popup window with a TextField inside, and I am trying to reduce the width of the TextField, but the Popup is preventing this and instead the TextField always grows to the width of the Popup.
public class InputPopup extends Popup { public InputPopup() { VBox vBox = new VBox(); vBox.setPrefWidth(200); vBox.setPrefHeight(200); vBox.setPadding(new Insets(15)); vBox.setSpacing(10); vBox.setAlignment(Pos.CENTER); Button closeBtn = new Button("Close"); closeBtn.setOnAction(e -> this.hide()); TextField textField = new TextField(); textField.setMaxWidth(40.0); textField.setPrefWidth(40.0); textField.setMinWidth(40.0); vBox.getChildren().addAll(textField, closeBtn); getContent().add(vBox); } } I've tried using setPrefWidth, setPrefSize, setMinSize, setMaxSize. I've tried putting it inside a HBox. Nothing seems to work when it is inside a Popup window. What can I do to fix this?
Источник: https://stackoverflow.com/questions/781 ... pup-window
I'm using a JavaFX Popup window with a TextField inside, and I am trying to reduce the width of the TextField, but the Popup is preventing this and instead the TextField always grows to the width of the Popup.
public class InputPopup extends Popup { public InputPopup() { VBox vBox = new VBox(); vBox.setPrefWidth(200); vBox.setPrefHeight(200); vBox.setPadding(new Insets(15)); vBox.setSpacing(10); vBox.setAlignment(Pos.CENTER); Button closeBtn = new Button("Close"); closeBtn.setOnAction(e -> this.hide()); TextField textField = new TextField(); textField.setMaxWidth(40.0); textField.setPrefWidth(40.0); textField.setMinWidth(40.0); vBox.getChildren().addAll(textField, closeBtn); getContent().add(vBox); } } I've tried using setPrefWidth, setPrefSize, setMinSize, setMaxSize. I've tried putting it inside a HBox. Nothing seems to work when it is inside a Popup window. What can I do to fix this?
Источник: https://stackoverflow.com/questions/781 ... pup-window
Мобильная версия