如何在 JavaFX 的文本字段中添加提示文本
How to add hint text in a Textfield in JavaFX
我想在文本字段中添加一些提示文本,例如 "name" 或 "surname"。我像这样创建文本字段 TextField userTextField = new TextField();
,但我找不到该怎么做。在这里,我刚刚找到了这个 Clear prompt text in JavaFX TextField only when user starts typing 但我不敢相信这是唯一的方法。还是我错了?
我是这样做的:
userTextField.setPromptText("name"); //to set the hint text
userTextField.getParent().requestFocus(); //to not setting the focus on that node so that the hint will display immediately
我想在文本字段中添加一些提示文本,例如 "name" 或 "surname"。我像这样创建文本字段 TextField userTextField = new TextField();
,但我找不到该怎么做。在这里,我刚刚找到了这个 Clear prompt text in JavaFX TextField only when user starts typing 但我不敢相信这是唯一的方法。还是我错了?
我是这样做的:
userTextField.setPromptText("name"); //to set the hint text
userTextField.getParent().requestFocus(); //to not setting the focus on that node so that the hint will display immediately