初步实现创建界面,编辑界面

This commit is contained in:
2025-11-24 01:08:18 +08:00
parent 3d160c00f1
commit 3b6e5e0916
19 changed files with 1681 additions and 67 deletions
+5 -2
View File
@@ -12,18 +12,19 @@
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<junit.version>5.12.1</junit.version>
<javafx.version>25.0.1</javafx.version>
</properties>
<dependencies>
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-controls</artifactId>
<version>21.0.6</version>
<version>${javafx.version}</version>
</dependency>
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-fxml</artifactId>
<version>21.0.6</version>
<version>${javafx.version}</version>
</dependency>
<dependency>
@@ -40,6 +41,8 @@
</dependency>
</dependencies>
<build>
<plugins>
<plugin>