请编写一个简单的javafx项目
时间: 2024-05-12 20:15:32 浏览: 78
Projects:用JavaFX编写的简单项目管理工具
好的,以下是一个简单的JavaFX项目,它包含一个简单的窗口和一个按钮,当按钮被点击时,会弹出一个对话框:
```java
import javafx.application.Application;
import javafx.scene.Scene;
import javafx.scene.control.Alert;
import javafx.scene.control.Button;
import javafx.scene.layout.StackPane;
import javafx.stage.Stage;
public class SimpleJavaFXProject extends Application {
@Override
public void start(Stage primaryStage) {
Button btn = new Button();
btn.setText("Click me");
btn.setOnAction(event -> {
Alert alert = new Alert(Alert.AlertType.INFORMATION);
alert.setTitle("Hello World!");
alert.setHeaderText(null);
alert.setContentText("You clicked the button!");
alert.showAndWait();
});
StackPane root = new StackPane();
root.getChildren().add(btn);
Scene scene = new Scene(root, 300, 250);
primaryStage.setTitle("Simple JavaFX Project");
primaryStage.setScene(scene);
primaryStage.show();
}
public static void main(String[] args) {
launch(args);
}
}
```
这个项目创建了一个带有一个按钮的简单窗口。当按钮被点击时,它会弹出一个对话框,告诉你已经点击了按钮。
阅读全文