Can I align a setprompText in JavaFX in the center?
925633Mar 22 2012 — edited Mar 22 2012I'm learning JavaFX and I have a small cosmetic issue. All of my content is centered, but I can't figure out how to center the prompttext (The text that is pre-filled in before you actually enter text in the textbox).
TextField username = new TextField();
username.setPromptText("Username");
username.setAlignment(Pos.CENTER); //This aligns only the text typed in. Not the promptTxt
In the above code, "Username" is not centered, but the text I type in is.