Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-8114145

PasswordField/TextField: "-fx-padding " style doesn't work properly

XMLWordPrintable

      To reproduce run following code




      import javafx.application.Application;
      import javafx.scene.Parent;
      import javafx.scene.Scene;
      import javafx.scene.control.PasswordField;
      import javafx.scene.layout.Pane;
      import javafx.scene.layout.VBox;
      import javafx.stage.Stage;

      public class PasswordBoxSample extends Application {

          public static void main(String[] args) {
              launch(args);
          }

          private Parent getContent() {

              VBox list = new VBox();
              Pane pane=new Pane();
              PasswordField box = new PasswordField();
              box.setPromptText("Enter password enter password");
              box.setStyle("-fx-border-color: green; -fx-padding:10 5 30 15;");
              box.setFocusTraversable(false);
              pane.getChildren().add(box);

              
              list.getChildren().addAll(pane);
              return list;
          }

          public void start(Stage stage) {
              stage.setX(100);
              stage.setY(100);
              stage.setWidth(300);
              stage.setHeight(300);
              Scene scene = new Scene(getContent());
              stage.setScene(scene);
              stage.setVisible(true);
          }
      }

            rbair Richard Bair (Inactive)
            anazarov Andrey Nazarov (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported: