online-exam-ui/src/main/resources/fxml/role_form.fxml

21 lines
990 B
XML

<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.scene.control.Button?>
<?import javafx.scene.control.ChoiceBox?>
<?import javafx.scene.control.Label?>
<?import javafx.scene.control.TextField?>
<?import javafx.scene.layout.AnchorPane?>
<AnchorPane prefHeight="400.0" prefWidth="600.0" xmlns="http://javafx.com/javafx/19" xmlns:fx="http://javafx.com/fxml/1" fx:controller="fmxl.RoleForm">
<children>
<Label layoutX="135.0" layoutY="84.0" text="类型:" />
<Label layoutX="130.0" layoutY="145.0" text="角色名称:" />
<Label layoutX="123.0" layoutY="209.0" text="角色描述:" />
<ChoiceBox layoutX="234.0" layoutY="80.0" prefHeight="23.0" prefWidth="229.0" />
<TextField layoutX="234.0" layoutY="141.0" prefHeight="23.0" prefWidth="229.0" />
<TextField layoutX="234.0" layoutY="205.0" prefHeight="23.0" prefWidth="229.0" />
<Button layoutX="267.0" layoutY="289.0" mnemonicParsing="false" text="保存" />
</children>
</AnchorPane>