gpt4 book ai didi

java - 我收到错误 The method setPromptText(String) is undefined for the type TextField

转载 作者:行者123 更新时间:2023-12-02 01:55:06 25 4
gpt4 key购买 nike

所以我似乎找不到任何关于为什么 Eclipse 无法识别“setPromptText”函数的信息。它询问我是否要创建方法 setPromptText:

import javafx.application.*;
import javafx.scene.*;
import javafx.stage.*;
import javafx.scene.layout.*;
import javafx.scene.control.*;
import javafx.event.*;
import javafx.geometry.*;

public class TextField extends Application {

TextField tf;
Label response;

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

}

public void start(Stage myStage) {
myStage.setTitle("Demonstrate a textfield");
FlowPane rootNode = new FlowPane(10,10);
rootNode.setAlignment(Pos.CENTER);
Scene myScene = new Scene(rootNode, 230, 140);
myStage.setScene(myScene);
response = new Label("Enter Name: ");
Button btnGetText = new Button("Get Name");
tf = new TextField();

tf.setPromptText("Enter a name.");

}


}

最佳答案

您需要更改类(class)名称,

或者您可以在 new Textfield() 声明中指定包。

例如将相关行更改为:

tf = new javafx.scene.control.TextField();

关于java - 我收到错误 The method setPromptText(String) is undefined for the type TextField,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52416058/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com