我最近开始在Javafx上开始初学者。我为stackpane得到这个符号错误,我不知道为什么我得到它。我试过在8,9和10之间切换我的jdk仍然有同样的问题。
import javafx.application.Application;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.stage.Stage;
import javafx.scene.StackPane;
public class JavaFX1 extends Application {
@Override
public void start(Stage primaryStage) {
Button button = new Button("Click Here");
primaryStage.setTitle("The Button");
StackPane layout = new StackPane();
layout.getChildren.add(button);
Scene scene = new Scene(layout, 300, 600);
primaryStage.setScene(scene);
primaryStage.show();
}
public static void main(String args[]){
Application.launch(args);
}
}
答案 0 :(得分:0)
尝试改变
这个:layout.getChildren.add(button);
对此:layout.getChildren().add(button);