标签: javafx textfield
我在文本字段中设置了一个值。如果我更改textfield中的值如何在javafx中的文本字段中设置更新值?
答案 0 :(得分:0)
你可以这样做:
TextField notification = new TextField (); notification.setText("Label");
通过调用textfield对象的setText方法。