You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
745 B
14 lines
745 B
<?xml version="1.0" encoding="UTF-8"?>
|
|
<?import javafx.scene.control.*?>
|
|
<?import javafx.scene.layout.*?>
|
|
<VBox spacing="12" xmlns="http://javafx.com/javafx/21" xmlns:fx="http://javafx.com/fxml/1" fx:controller="com.coproject.controller.ScoreController" stylesheets="@../styles/app.css" prefWidth="520" prefHeight="360">
|
|
<children>
|
|
<Label text="评分" styleClass="title" />
|
|
<Label fx:id="scoreLabel" />
|
|
<HBox spacing="10">
|
|
<Button text="继续做题" onAction="#onContinue" fx:id="continueBtn" />
|
|
<Button text="打开试卷夹" onAction="#onOpenPapersFolder" fx:id="openDirBtn" />
|
|
<Button text="退出" onAction="#onExit" fx:id="exitBtn" />
|
|
</HBox>
|
|
</children>
|
|
</VBox> |